Class SpringPropertySource
java.lang.Object
io.fluxcapacitor.javaclient.configuration.spring.SpringPropertySource
- All Implemented Interfaces:
PropertySource
A
PropertySource
implementation that delegates property lookups to a Spring Environment
.
This allows Flux Capacitor components to access configuration properties managed by Spring's environment system.
- See Also:
-
Field Summary
Fields inherited from interface io.fluxcapacitor.common.application.PropertySource
substitutionPattern
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface io.fluxcapacitor.common.application.PropertySource
andThen, containsProperty, get, getBoolean, getBoolean, require, substituteProperties
-
Constructor Details
-
SpringPropertySource
public SpringPropertySource()
-
-
Method Details
-
get
Description copied from interface:PropertySource
Retrieves the value of a property by name.- Specified by:
get
in interfacePropertySource
- Parameters:
name
- the name of the property to look up- Returns:
- the property value, or
null
if not found
-