Klasse Configuration

java.lang.Object
org.apache.torque.generator.configuration.Configuration

public class Configuration extends Object
The configuration class keeps the complete configuration needed for the generation process. It is supplied with UnitDescriptors describing the available units of generation, and can then read the configuration. After the configuration is read, no new units of generation can be added.
  • Konstruktordetails

    • Configuration

      public Configuration()
  • Methodendetails

    • addUnit

      public void addUnit(UnitDescriptor unitDescriptor)
      Adds a unit of generation to the configuration.
      Parameter:
      unitDescriptor - Describes the unit of generation to add, not null.
      Löst aus:
      NullPointerException - if unitDescriptor is null.
      IllegalStateException - if the configuration has already been read.
    • addUnits

      public void addUnits(List<UnitDescriptor> unitDescriptors)
      Adds several units of generation to the configuration.
      Parameter:
      unitDescriptors - Describes the units of generation to add, not null.
      Löst aus:
      NullPointerException - if unitDescriptors is null or the list contains a null entry.
      IllegalStateException - if the configuration has already been read.
    • read

      public void read() throws ConfigurationException
      Reads the configuration. If a UnitDescriptor does not provide a loglevel, Loglevel.getCurrentLoglevel() will be applied (which is the root log level of the provided adapter).
      Löst aus:
      ConfigurationException - if an error occurs during reading the configuration.
    • getUnitConfigurations

      public List<UnitConfiguration> getUnitConfigurations()
      Returns the list of UnitConfigurations.
      Gibt zurück:
      the list of unit configurations, never null.
      Löst aus:
      IllegalStateException - if the configuration was not yet read.
    • getConfigurationHandlers

      public ConfigurationHandlers getConfigurationHandlers()
      Returns the available configuration handlers.
      Gibt zurück:
      the available configuration handlers, not null.
    • setConfigurationHandlers

      public void setConfigurationHandlers(ConfigurationHandlers configurationHandlers)
      Sets the available configuration handlers.
      Parameter:
      configurationHandlers - the available configuration handlers, not null.