ContainerConfigReader

Helper class that reads a container’s configuration from a JSON or YAML file.

Description

The ContainerConfigReader class allows you to read a container’s configuration from a JSON or YAML file.

Static methods

readFromFile

Reads a container’s configuration from JSON or YAML file. The type of the file is determined by the file extension.

public static ContainerConfig readFromFile(IContext context, String path, ConfigParams parameters) throws ApplicationException

  • context: IContext - (optional) a context to trace execution through call chain.
  • path: String - path to the component’s configuration file.
  • parameters: ConfigParams - configuration parameters or null to skip parameterization.
  • returns: ContainerConfig - read container configuration

readFromJsonFile

Reads a container’s configuration from a JSON file.

public static ContainerConfig readFromJsonFile(IContext context, String path, ConfigParams parameters) throws ApplicationException

  • context: IContext - (optional) a context to trace execution through call chain.
  • path: String - path to the component’s configuration file.
  • parameters: ConfigParams - configuration parameters or null to skip parameterization.
  • returns: ContainerConfig - read container configuration

readFromYamlFile

Reads container configuration from a YAML file.

public static ContainerConfig readFromYamlFile(IContext context, String path, ConfigParams parameters) throws ApplicationException

  • context: IContext - (optional) a context to trace execution through call chain.
  • path: String - path to the component’s configuration file.
  • parameters: ConfigParams - configuration parameters or null to skip parameterization.
  • returns: ContainerConfig - read container configuration