Extends: StringValueMap
Description
The ConfigParams class contains a key-value map with configuration parameters. It allows you to define configuration parameters that can be used, for example, to define access control credentials.
Important points:
- In general, ConfigParams is used to pass configurations to IConfigurable objects. It also serves as a basis for more concrete configurations, such as ConnectionParams or CredentialParams.
- This class stores all values as strings. These values can be serialized as JSON or string forms. When retrieved the values can be automatically converted using GetAsXXX methods.
- The keys are case-sensitive, so it is recommended to use consistent C-style notation, such as “my_param”.
- Configuration parameters can be broken into sections and subsections using dot notation, such as “section1.subsection1.param1”. Using GetSection method all parameters from the specified section can be extracted from a ConfigMap.
- The ConfigParams class supports serialization from/to plain strings as: “key1=123;key2=ABC;key3=2016-09-16T00:00:00.00Z”
Constructors
Creates a new ConfigParams and fills it with values. See StringValueMap.constructors
public
constructor(values: any = null)
- values: any - (optional) object to be converted into key-value pairs to initialize this config map.
Instance Methods
addSection
Adds parameters into this ConfigParams under a specified section. Keys for the new parameters are appended with section dot prefix.
public
addSection(section: string, sectionParams: ConfigParams): void
- section: string - name of the section where add new parameters
- sectionParams: ConfigParams - new parameters to be added.
getSection
Gets parameters from specific section stored in this ConfigMap. The section name is removed from parameter keys.
public
getSection(section: string): ConfigParams
- section: string - name of the section to retrieve configuration parameters from.
- returns: ConfigParams - all configuration parameters that belong to the section named ‘section’.
getSectionNames
Gets a list with all 1st level section names.
public
getSectionNames(): string[]
- returns: string[] - list of section names stored in this ConfigMap.
override
Overrides parameters with new values from a specified ConfigParams object and returns a new ConfigParams object.
public
override(configParams: ConfigParams): ConfigParams
- configParams: ConfigParams - ConfigMap with parameters to override the current values.
- returns: ConfigParams - new ConfigParams object.
setDefaults
Set default values from a specified ConfigParams object and returns a new ConfigParams object.
public
setDefaults(defaultConfigParams: ConfigParams): ConfigParams
- defaultConfigParams: ConfigParams - ConfigMap object with default parameter values.
- returns: ConfigParams - new ConfigParams object.
Static methods
fromString
Creates a new ConfigParams object filled with key-value pairs serialized as a string.
public static
fromString(line: string): ConfigParams
- line: string - string with serialized key-value pairs as “key1=value1;key2=value2;…”
Example: “Key1=123;Key2=ABC;Key3=2016-09-16T00:00:00.00Z” - returns: ConfigParams - new ConfigParams object.
fromTuples
Creates a new ConfigParams object filled with provided key-value pairs called tuples.
Tuples parameters contain a sequence of key1, value1, key2, value2, … pairs.
See StringValueMap.fromTuplesArray
public static
fromTuples(…tuples: any[]): ConfigParams
- tuples: any[] - tuples to fill a new ConfigParams object.
- returns: ConfigParams - new ConfigParams object.
fromValue
Creates a new ConfigParams object filled with key-value pairs from specified object.
public static
fromValue(value: any): ConfigParams
- value: any - object with key-value pairs used to initialize a new ConfigParams.
- returns: ConfigParams - new ConfigParams object.
mergeConfigs
Merges two or more ConfigParams into one. The following ConfigParams override
previously defined parameters.
See StringValueMap.fromMaps
public static
mergeConfigs(…configs: ConfigParams[]): ConfigParams
- configs: ConfigParams[] - list of ConfigParams objects to be merged.
- returns: ConfigParams - new ConfigParams object.
Examples
// Create a ConfigParams object from a tuple
let config = ConfigParams.fromTuples("section1.key1", "AAA", "section1.key2", 123, "section2.key1", true);
// Create a ConfigParams object from a string
config = ConfigParams.fromString("section1.key1=AAA;section1.key2=123;section2.key1=True");
// Create a ConfigParams object from a value
let obj = {"section1.key1": "AAA", "section1.key2": 123, "section2.key1": true}; // Create a object
config = ConfigParams.fromValue(obj); // Create the ConfigParams object using the object
// Add a new section
config.addSection("section3", ConfigParams.fromTuples("key1", "ABCDE"));
// Get a section
let section1 = config.getSection("section1") // Returns {'key1': 'AAA', 'key2': '123'}
// Get the section names
config.getSectionNames(); // Returns ['section1', 'section2']
// Change the value of section1.key1 to BBB
config.override(ConfigParams.fromTuples("section1.key1", "BBB"));