Implements: IConfigurable, IReferenceable
Description
The CompositeConnectionResolver class allows you to resolve connection and credential parameters, validate them and generate connection options.
Configuration parameters
connection(s):
- discovery_key: (optional) a key to retrieve the connection from IDiscovery
- protocol: communication protocol
- host: host name or IP address
- port: port number
- uri: resource URI or connection string with all parameters in it
credential(s):
- store_key: (optional) a key to retrieve the credentials from ICredentialStore
- username: user name
- password: user password
References
- *:discovery:*:*:1.0 - (optional) IDiscovery services to resolve connections
- *:credential-store:*:*:1.0 - (optional) Credential stores to resolve credentials ICredentialStore
Fields
Instance methods
compose
Composes Composite connection options from connection and credential parameters.
publicConfigParams compose(IContext context, List<ConnectionParams> connections, CredentialParams credential, ConfigParams parameters) throws ConfigException
- context: IContext - (optional) a context to trace execution through call chain.
- connections: List<ConnectionParams> connections - connection parameters
- credential: CredentialParams - credential parameters
- parameters: ConfigParams - optional parameters
- returns: ConfigParams - resolved options or error.
composeOptions
A composite of several merger options
protectedConfigParams composeOptions(List<ConnectionParams> connections, CredentialParams credential, ConfigParams parameters)
- connections: List<ConnectionParams> - connection parameters
- credential: CredentialParams - credential parameters
- parameters: ConfigParams - optional parameters
- returns: ConfigParams - resolved options or error
configure
Configures component by passing configuration parameters.
publicvoid configure(ConfigParams configParams) throws ConfigException
- config: ConfigParams - configuration parameters to be set.
finalizeOptions
Finalize merged options. This method can be overriden in child classes.
protectedConfigParams finalizeOptions(ConfigParams options)
- options: ConfigParams - options: connection options
- returns: ConfigParams - finalized connection options
mergeConnection
Merges connection options with connection parameters. This method can be overriden in child classes.
protectedConfigParams mergeConnection(ConfigParams options, ConnectionParams connection)
- options: ConfigParams - connection options
- connection: ConnectionParams - connection parameters to be merged
- returns: ConfigParams - merged connection options.
mergeCredential
Merges connection options with credential parameters. This method can be overriden in child classes.
protectedConfigParams mergeCredential(ConfigParams options, CredentialParams credential)
- options: ConfigParams - connection options
- credential: CredentialParams - credential parameters to be merged
- returns: ConfigParams - merged connection options.
mergeOptional
Merges connection options with optional parameters. This method can be overriden in child classes.
protectedConfigParams mergeOptional(ConfigParams options, ConfigParams parameters)
- options: ConfigParams - connection options
- parameters: ConfigParams - optional parameters to be merged
- returns: ConfigParams - merged connection options.
resolve
Resolves connection options from connection and credential parameters.
publicConfigParams resolve(IContext context) throws ApplicationException
- context: IContext - (optional) a context to trace execution through call chain.
- returns: ConfigParams - resolved options or error
setReferences
Sets references to dependent components.
publicvoid setReferences(IReferences references) throws ReferenceException, ConfigException
- references: IReferences - references to locate the component dependencies.
validateConnection
Validates connection parameters. Throws error if validation failed. This method can be overriden in child classes.
protectedvoid validateConnection(IContext context, ConnectionParams connection) throws ConfigException
- context: IContext - (optional) a context to trace execution through call chain.
- connection: ConnectionParams - connection parameters to be validated
validateCredential
Validates credential parameters. This method can be overriden in child classes.
protectedvoid validateCredential(IContext context, CredentialParams credential)
- context: IContext - (optional) a context to trace execution through call chain.
- credential: CredentialParams - credential parameters to be validated