Interface PropertyService
public interface PropertyService
Interface for a service that reads configuration properties in several formats
-
Method Summary
Modifier and TypeMethodDescriptionreadInteger
(String key) Returns the integer value for the given keyint
readInteger
(String key, int defaultValue) Returns the integer value for the given keyReturns a map containing all configured key-value pairs for the given keyReturns the string values for the given key.readString
(String key) Returns the string value for the given key
-
Method Details
-
readString
Returns the string value for the given key- Parameters:
key
- the name of the property to read- Returns:
- the value for the given key, or null if the key cannot be resolved
-
readMultiValueString
Returns the string values for the given key. Values are splitted by a comma and trimmed afterwards- Parameters:
key
- the name of the property to read- Returns:
- a list of values for the given key, or null if the key cannot be resolved
-
readInteger
Returns the integer value for the given key- Parameters:
key
- the name of the property to read- Returns:
- the value for the given key, or null if the key cannot be resolved or the value is empty
- Throws:
IllegalArgumentException
- in case the value can not be converted to an integer
-
readInteger
Returns the integer value for the given key- Parameters:
key
- the name of the property to readdefaultValue
- the value to return if the key cannot be resolved or the value is empty- Returns:
- the value for the given key, or defaultValue if the key cannot be resolved or the value is empty
- Throws:
IllegalArgumentException
- in case the value can not be converted to an integer
-
readMap
Returns a map containing all configured key-value pairs for the given key- Parameters:
key
- the name of the property to read- Returns:
- a map containing key-value pairs, never null
-