Class DSpaceConfigurationService
- java.lang.Object
-
- org.dspace.xoai.services.impl.config.DSpaceConfigurationService
-
- All Implemented Interfaces:
ConfigurationService
public class DSpaceConfigurationService extends Object implements ConfigurationService
-
-
Constructor Summary
Constructors Constructor Description DSpaceConfigurationService()Initialize the OAI Configuration Service
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetBooleanProperty(String key, boolean defaultValue)booleangetBooleanProperty(String module, String key, boolean defaultValue)StringgetProperty(String key)StringgetProperty(String module, String key)
-
-
-
Method Detail
-
getProperty
public String getProperty(String key)
- Specified by:
getPropertyin interfaceConfigurationService
-
getProperty
public String getProperty(String module, String key)
- Specified by:
getPropertyin interfaceConfigurationService
-
getBooleanProperty
public boolean getBooleanProperty(String module, String key, boolean defaultValue)
- Specified by:
getBooleanPropertyin interfaceConfigurationService
-
getBooleanProperty
public boolean getBooleanProperty(String key, boolean defaultValue)
- Specified by:
getBooleanPropertyin interfaceConfigurationService
-
-