Package org.opensaml.core.config
Interface ConfigurationProperties
- All Known Implementing Classes:
EmptyConfigurationProperties,PropertiesAdapter,SpringPropertiesAdapter
public interface ConfigurationProperties
An interface for a property set.
-
Method Summary
Modifier and TypeMethodDescriptiongetProperty(String key) Return the property value with the specified key, or null.getProperty(String key, String defaultValue) Return the property value with the specified key, or the specified default value if key does not exist.
-
Method Details
-
getProperty
Return the property value with the specified key, or null.- Parameters:
key- the property key- Returns:
- the property value, or null
-
getProperty
Return the property value with the specified key, or the specified default value if key does not exist.- Parameters:
key- the property keydefaultValue- the default value to return- Returns:
- the property value, or the specified default value
-