Changeset 4988


Ignore:
Timestamp:
2003-07-21T09:34:42+12:00 (21 years ago)
Author:
kjdon
Message:

the base receptionist class now has a GSParams class - this contains the common interface params, and whether or ot to save them

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/src/java/org/greenstone/gsdl3/core/Receptionist.java

    r4692 r4988  
    3636    protected HashMap action_map=null;
    3737   
     38    /** the list of params */
     39    protected GSParams params=null;
     40   
    3841    public Receptionist() {
    3942    this.converter = new XMLConverter();
     
    4245    }
    4346   
     47    public void setParams(GSParams params) {
     48    this.params = params;
     49    }
    4450    public void setConfigParams(HashMap params) {
    4551    this.config_params = params;
     
    8995        ac.setMessageRouter(this.mr);
    9096        ac.configure();
     97        ac.getActionParameters(this.params);
    9198        this.action_map.put(action_name, ac);
    9299    }
     
    140147        ac.setMessageRouter(this.mr);
    141148        ac.configure();
     149        ac.getActionParameters(this.params);
    142150        this.action_map.put(action, ac);
    143151        a = ac;
Note: See TracChangeset for help on using the changeset viewer.