Ignore:
Timestamp:
Feb 10, 2015, 4:45:56 PM (9 years ago)
Author:
casties
Branch:
default
Message:

added config option for webapp URL prefix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/de/mpiwg/itgroup/annotations/restlet/BaseRestlet.java

    r89 r94  
    115115   
    116116    /**
     117     * prefix for webapp URLs (if needed by proxying).
     118     */
     119    protected String webappUriPrefix = null;
     120    public static final String WEBAPP_PREFIX = "annotationmanager.webapp.prefix";
     121   
     122    /**
    117123     * prefix to create uris for tags in store.
    118124     */
     
    172178                        graphdbPath = serverConfig.getProperty(GRAPHDB_PATH_KEY, graphdbPath);
    173179                        ldapServerUrl = serverConfig.getProperty(LDAP_SERVER_KEY, null);
     180                        webappUriPrefix = serverConfig.getProperty(WEBAPP_PREFIX, null);
    174181                        /*
    175182                         * uri prefixes
Note: See TracChangeset for help on using the changeset viewer.