Interface PackagesStorageConfiguration
-
- All Known Implementing Classes:
DefaultPackagesStorageConfiguration
public interface PackagesStorageConfigurationPackages storage configuration is used to set and get the storage related configuration values.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.PropertiesgetProperties()Get all properties for the configuration.java.lang.StringgetProperty(java.lang.String key)Get a property with the key.voidsetProperty(java.lang.String key, java.lang.String value)Set a property with the key.voidsetProperty(java.util.Properties properties)Set a group of the property.
-
-
-
Method Detail
-
getProperty
java.lang.String getProperty(java.lang.String key)
Get a property with the key.- Parameters:
key- property key- Returns:
- the value
-
setProperty
void setProperty(java.lang.String key, java.lang.String value)Set a property with the key.- Parameters:
key- property keyvalue- property value
-
setProperty
void setProperty(java.util.Properties properties)
Set a group of the property.- Parameters:
properties- a group of the property
-
getProperties
java.util.Properties getProperties()
Get all properties for the configuration.- Returns:
- all properties for the configuration
-
-