ConfigurationProviderConfig
Defines the reference to a configuration provider implementation and how to construct it.
Parameters
The name of the configuration provider class.
The configuration provider class name must be formatted in PascalCase
and must end with the ConfigurationProvider
suffix. The configuration provider class name needs to match a class with the same name. The ConfigurationProvider
suffix is mandatory to make it easier for developers to find where the class is used in the code base.
For the StaticConfigurationProviderConfig subclass this class needs to be a subclass of com.tomtom.ivi.platform.framework.api.configuration.api.ComposableStaticConfigurationProvider
.
For the DynamicConfigurationProviderConfig subclass this class needs to be a subclass of com.tomtom.ivi.platform.framework.api.configuration.api.ComposableDynamicConfigurationProvider
.
The module that contains the configuration provider class.
The package name of the class is obtained from this ModuleReference. If the class resides in a sub package within this module, the sub package can be provided through subPackageName. This subPackageName is appended to the package name of the module, with a period in between.
Optional sub package. If not null
, this value is appended to the ModuleReference.packageName of the implementationModule property with a period in between.
The constructor arguments required to initiate the configuration provider class.