Ignore:
Timestamp:
12/22/10 13:27:06 (13 years ago)
Author:
patdui
Message:
  • added resourceType facet and added a list of resources on the show result page.
  • added i18n properties
  • fixed some olac facets supporting multiple patterns to match a facet
File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlo/trunk/vlo_webapp/src/main/java/eu/clarin/cmdi/vlo/Configuration.java

    r770 r1007  
    1212    private final static Configuration INSTANCE = new Configuration();
    1313
     14    public static final String CONFIG_FILE = "applicationContext.xml";
     15
    1416    private String solrUrl;
    1517
     
    1719
    1820    private String[] facetFields;// = new String[] { "origin", "organisation", "continent", "genre", "country", "subject", "language" };
     21
     22    private String handleServerUrl; //"http://hdl.handle.net/"
    1923
    2024    private Configuration() {
     
    5458        this.facetFields = facetFields;
    5559    }
     60
     61    public String getHandleServerUrl() {
     62        return handleServerUrl;
     63    }
     64
     65    public void setHandleServerUrl(String handleServerUrl) {
     66        this.handleServerUrl = handleServerUrl;
     67    }
     68   
     69   
    5670}
Note: See TracChangeset for help on using the changeset viewer.