new mmir.ConfigurationManager()
        A class for managing the configuration. 
It's purpose is to load the configuration and settings automatically. This "class" is structured as a singleton - so that only one instance is in use.
    
    
    
    
    
    
    
    
    
It's purpose is to load the configuration and settings automatically. This "class" is structured as a singleton - so that only one instance is in use.
Requires
- module:mmir.require
 
Methods
- 
    
get(propertyName, defaultValue, useSafeAccess){any}
 - 
    
    
    Returns the value of a property.
Name Type Description propertyNameString The name of the property. NOTE: If the property does not exists at the root-level, dot-separated names will be resolved into object-structures, e.g. some.propertywill be resolved so that thevalueat:some: {property: <value>}will be returneddefaultValueany optional OPTIONAL a default value that will be returned, in case there is no property propertyName.useSafeAccessBoolean optional OPTIONAL if true, resolution of dot-separated paths will be done "safely", i.e. if a path-element does not exists, noerrorwill be thrown, but instead the function will return thedefaultValue(which will beundefinedif the argument is not given).
DEFAULT:true
NOTE: if this argument is used, paramdefaultValuemust also be given!Returns:
Type Description any The value of the property  - 
    
getBoolean(defaultValue)
 - 
    
    
    Uses
get. If the propertyName does not exists, returnsundefined, otherwise values will be converted into Boolean values. Special case for Strings: the String"false"will be converted to Boolean valuefalse.Name Type Description defaultValueany optional OPTIONAL if a default value is specified and there exists no property propertyName, the specified default value will be returned. NOTE: if this argument is used,useSafeAccessmust also be given! NOTE: the default value will also be converted to a Boolean value, if necessary.- See:
 - 
        
#get
 
 - 
    
getString(defaultValue)
 - 
    
    
    Uses
get. If the property does not exists, returnsundefined, otherwise values will be converted into String values. If the value has not the type"string", it will be converted byJSON.stringify.Name Type Description defaultValueany optional OPTIONAL if a default value is specified and there exists no property propertyName, the specified default value will be returned. NOTE: if this argument is used,useSafeAccessmust also be given! NOTE: the default value will also be converted to a String value, if necessary.- See:
 - 
        
#get
 
 - 
    
set(propertyName, value)
 - 
    
    
    Sets a property to a given value.
Name Type Description propertyNameString | Array.<String> The name of the property. If propertyNameis an Array, it will be treated as if its entries were path-elements analogous to a dot-separated String propertyName. NOTE: dot-separated names will be resolved into object-structures, e.g.some.propertywill be resolved so that thevaluewill set to:some: {property: <value>}valueany The value of the property Throws:
- 
        if the propertyName is dot-separated AND one of its path-elements (except for the last) already exists AND its type is not 'object'
 - Type
 - Error
 
 -