Class ApplicationConfig

java.lang.Object
oracle.as.scheduler.ApplicationConfig
All Implemented Interfaces:
Serializable

public class ApplicationConfig extends Object implements 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 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 represents
      essProps - the ESS defined configuration properties for this application
      appProps - the application defined configuration properties for this application
  • Method Details

    • getApplicationName

      public String getApplicationName()
      Gets the logical name of the application whose configuration this is.
      Returns:
      the logical name of the application
    • isPropertySet

      public boolean isPropertySet(String propertyName)
      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

      public String getValue(String propertyName)
      Gets the value of the specified property. If the property has not been set, this method returns null.
      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

      public ConfigProperty getProperty(String propertyName)
      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

      public Collection<ConfigProperty> getEssConfigProperties()
      Gets the properties defined by ESS.
      Returns:
      the properties defined by ESS
    • getAppConfigProperties

      public Collection<ConfigProperty> getAppConfigProperties()
      Gets the properties defined by the application.
      Returns:
      the properties defined by the application