Implements: IConfigurable, IReferenceable
Description
The CredentialResolver class is used to retrieve component credentials.
Important points
- If credentials are configured to be retrieved from ICredentialStore, it will automatically locate ICredentialStore in component references and retrieve the credentials from there using the store_key parameter.
Configuration parameters
credential:
- store_key: (optional) a key to retrieve the credentials from ICredentialStore
- …: other credential parameters
credentials: alternative to credential
- [credential params 1]: first credential parameters
- … : credential parameters for key 1
- …
- [credential params N]: Nth credential parameters
- … : credential parameters for key N
References
- *:credential-store:*:*:1.0 - (optional) Credential stores to resolve credentials
Constructors
Creates a new instance of credentials resolver.
public
constructor(config: ConfigParams = null, references: IReferences = null)
- config: ConfigParams - (optional) component configuration parameters
- references: IReferences - (optional) component references
Instance methods
add
Adds a new credential to component credentials
public
add(connection: CredentialParams): void
- connection: CredentialParams - new credential parameters to be added
configure
Configures component by passing configuration parameters.
public
configure(config: ConfigParams): void
- config: ConfigParams - configuration parameters to be set.
getAll
Gets all credentials configured in component configuration.
Redirect to CredentialStores is not done at this point. If you need fully fleshed credential use lookup method instead.
public
getAll(): CredentialParams[]
- returns: CredentialParams[] - a list with credential parameters
lookup
Looks up component credential parameters. If credentials are configured to be retrieved from Credential store it finds a ICredentialStore` and lookups credentials there.
public
lookup(context: IContext): Promise<CredentialParams>
- context: IContext - (optional) transaction id to trace execution through call chain.
- returns: Promise<CredentialParams> - resolved credential parameters or null if nothing was found.
setReferences
Sets references to dependent components.
public
setReferences(references: IReferences): void
- references: IReferences - references to locate the component dependencies.
Examples
let config = ConfigParams.fromTuples(
"credential.user", "jdoe",
"credential.pass", "pass123"
);
let credentialResolver = new CredentialResolver();
credentialResolver.configure(config);
credentialResolver.setReferences(references);
let credential = credentialResolver.lookup("123");
// Now use the credential...