Class ContainerConfig
- All Implemented Interfaces:
Serializable
,Cloneable
,Iterable<ComponentConfig>
,Collection<ComponentConfig>
,List<ComponentConfig>
,RandomAccess
Container configuration defined as a list of component configurations.
- See Also:
-
Field Summary
Fields inherited from class java.util.AbstractList
modCount
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance of container configuration.ContainerConfig
(Collection<ComponentConfig> components) Creates a new instance of container configuration. -
Method Summary
Modifier and TypeMethodDescriptionstatic ContainerConfig
fromConfig
(org.pipservices3.commons.config.ConfigParams config) Creates a new ContainerConfig object based on configuration parameters.static ContainerConfig
Creates a new ContainerConfig object filled with key-value pairs from specified object.Methods inherited from class java.util.ArrayList
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, equals, forEach, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSize
Methods inherited from class java.util.AbstractCollection
containsAll, toString
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, stream, toArray
Methods inherited from interface java.util.List
containsAll
-
Constructor Details
-
ContainerConfig
public ContainerConfig()Creates a new instance of container configuration. -
ContainerConfig
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.
-