Class ContainerConfig

All Implemented Interfaces:
Serializable, Cloneable, Iterable<ComponentConfig>, Collection<ComponentConfig>, List<ComponentConfig>, RandomAccess

public class ContainerConfig extends ArrayList<ComponentConfig>
Container configuration defined as a list of component configurations.
See Also:
  • Constructor Details

    • ContainerConfig

      public ContainerConfig()
      Creates a new instance of container configuration.
    • ContainerConfig

      public ContainerConfig(Collection<ComponentConfig> components)
      Creates a new instance of container configuration.
      Parameters:
      components - (optional) a list of component configurations.
  • Method Details

    • fromValue

      public static ContainerConfig fromValue(Object value) throws org.pipservices3.commons.errors.ConfigException
      Creates a new ContainerConfig object filled with key-value pairs from specified object. The value is converted into ConfigParams object which is used to create the object.
      Parameters:
      value - an object with key-value pairs used to initialize a new ContainerConfig.
      Returns:
      a new ContainerConfig object.
      Throws:
      org.pipservices3.commons.errors.ConfigException - when configuration is wrong.
      See Also:
    • fromConfig

      public static ContainerConfig fromConfig(org.pipservices3.commons.config.ConfigParams config) throws org.pipservices3.commons.errors.ConfigException
      Creates a new ContainerConfig object based on configuration parameters. Each section in the configuration parameters is converted into a component configuration.
      Parameters:
      config - an object with key-value pairs used to initialize a new ContainerConfig.
      Returns:
      a new ContainerConfig object.
      Throws:
      org.pipservices3.commons.errors.ConfigException - when configuration is wrong.