Interface PropertySource<T>
-
- Type Parameters:
T- the source type
- All Known Implementing Classes:
AbstractPropertySource,MapPropertySource,PropertiesPropertySource
public interface PropertySource<T>Interface representing a source of key/value property pairs with name.The underlying source object may be of any type
Tthat encapsulates properties such asPropertiesobjects,Mapobjects, even with zookeeper remote config source.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancontainsProperty(String property)List<String>getAllPropertyNames()StringgetName()Optional<Object>getProperty(String property)TgetSource()
-