Ignore:
Timestamp:
2013-06-13T13:13:46+12:00 (11 years ago)
Author:
sjm84
Message:

Various improvements and fixes mostly to do with adding depositor functionality

File:
1 edited

Legend:

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

    r26055 r27617  
    3131
    3232    /** the set up variables */
    33     protected HashMap<String, Comparable> config_params = null;
     33    protected HashMap<String, Object> config_params = null;
    3434    /** container Document to create XML Nodes */
    3535    protected Document doc = null;
     
    7171    }
    7272
    73     public void setConfigParams(HashMap<String, Comparable> params)
     73    public void setConfigParams(HashMap<String, Object> params)
    7474    {
    7575        this.config_params = params;
    7676    }
    7777
    78     public HashMap<String, Comparable> getConfigParams()
     78    public HashMap<String, Object> getConfigParams()
    7979    {
    8080        return this.config_params;
     
    316316            }
    317317            base_interfaces.add(base_interface);
     318            this.config_params.put(GSConstants.BASE_INTERFACES, base_interfaces);
    318319            // now see if this has a base interface
    319320            Document config_doc = this.converter.getDOM(base_interface_config_file);
Note: See TracChangeset for help on using the changeset viewer.