Package oracle.as.scheduler
Class ApplicationConfig
java.lang.Object
oracle.as.scheduler.ApplicationConfig
- All Implemented Interfaces:
Serializable
Class for application configuration.
This class encompasses all the configuration for an application as
specified in ess-config.xml and customizations thereof, including default
values.
The configuration parameters specified have not been run through the substitution engine.
The methods in this class do not differentiate between properties set directly for this application and ones which have default values as specified in the ESSAPP configuration.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionApplicationConfig
(String appName, Map<String, ConfigProperty> essProps, Map<String, ConfigProperty> appProps) Constructor -
Method Summary
Modifier and TypeMethodDescriptionGets the properties defined by the application.Gets the logical name of the application whose configuration this is.Gets the properties defined by ESS.getProperty
(String propertyName) Gets the property information for the given property name.Gets the value of the specified property.boolean
isPropertySet
(String propertyName) Has the given configuration property been set for this application?
-
Constructor Details
-
ApplicationConfig
public ApplicationConfig(String appName, Map<String, ConfigProperty> essProps, Map<String, ConfigProperty> appProps) Constructor- Parameters:
appName
- the name of the application whose configuration this object representsessProps
- the ESS defined configuration properties for this applicationappProps
- the application defined configuration properties for this application
-
-
Method Details
-
getApplicationName
Gets the logical name of the application whose configuration this is.- Returns:
- the logical name of the application
-
isPropertySet
Has the given configuration property been set for this application?- Parameters:
propertyName
- the name of the property- Returns:
true
if the property has been set,false
otherwise.
-
getValue
Gets the value of the specified property. If the property has not been set, this method returnsnull
.- Parameters:
propertyName
- the name of the property- Returns:
- The value of the property if it has been set or
null
if it has not.
-
getProperty
Gets the property information for the given property name.- Parameters:
propertyName
- the name of the property- Returns:
- the property information for the given property
-
getEssConfigProperties
Gets the properties defined by ESS.- Returns:
- the properties defined by ESS
-
getAppConfigProperties
Gets the properties defined by the application.- Returns:
- the properties defined by the application
-