Package com.persequor.extension
Interface ISagaExtensionProperties
- All Known Implementing Classes:
FullFlowEnvironmentWrapper
public interface ISagaExtensionProperties
-
Method Summary
Modifier and TypeMethodDescriptiongetProperty
(String property) Read property from property file(s) registered with SAGA Note: You cannot necessarily read all SAGA default value via this interface.getProperty
(String property, String defaultValue) Read a property from property file(s) registered with SAGA, use defaultValue if it isn't set Note: You cannot necessarily read all SAGA default values via this interface.
-
Method Details
-
getProperty
Read property from property file(s) registered with SAGA Note: You cannot necessarily read all SAGA default value via this interface. It is intended for reading your own properties only- Parameters:
property
- The name of the property you wish to read (eg. my.property)- Returns:
- The property value as a string
-
getProperty
Read a property from property file(s) registered with SAGA, use defaultValue if it isn't set Note: You cannot necessarily read all SAGA default values via this interface. It is intended for reading your own properties only- Parameters:
property
- The name of the property you wish to read (eg. my.property)defaultValue
- The value to use if the property is not set- Returns:
- The property value as a string
-