org.springframework.core.env
Class MapPropertySource
java.lang.Object
org.springframework.core.env.PropertySource<T>
org.springframework.core.env.EnumerablePropertySource<Map<String,Object>>
org.springframework.core.env.MapPropertySource
- Direct Known Subclasses:
- PropertiesPropertySource
public class MapPropertySource
- extends EnumerablePropertySource<Map<String,Object>>
PropertySource that reads keys and values from a Map object.
- Since:
- 3.1
- Author:
- Chris Beams
- See Also:
PropertiesPropertySource
MapPropertySource
protected MapPropertySource(String name,
Map<String,Object> source)
getProperty
public Object getProperty(String key)
- Description copied from class:
PropertySource
- Return the value associated with the given key,
null if not found.
- Specified by:
getProperty in class PropertySource<Map<String,Object>>
- Parameters:
key - the property key to find- See Also:
PropertyResolver.getRequiredProperty(String)
getPropertyNames
public String[] getPropertyNames()
- Description copied from class:
EnumerablePropertySource
- Return the names of all properties contained by the source object (never
null).
- Specified by:
getPropertyNames in class EnumerablePropertySource<Map<String,Object>>