Class CubbyholeSecurityService
java.lang.Object
io.helidon.integrations.vault.secrets.cubbyhole.CubbyholeSecurityService
- All Implemented Interfaces:
SecurityProviderService
Service loader service implementation for
SecurityProviderService
.-
Constructor Summary
ConstructorDescriptionDeprecated.Do not use this constructor, this is a service loader service! -
Method Summary
Modifier and TypeMethodDescriptionClass
<? extends SecurityProvider> Class of the provider of this provider service.Key of the "root" of configuration of this provider.providerInstance
(Config config) Create a new instance of the provider based on the configuration provided.
-
Constructor Details
-
CubbyholeSecurityService
Deprecated.Do not use this constructor, this is a service loader service!
-
-
Method Details
-
providerConfigKey
Description copied from interface:SecurityProviderService
Key of the "root" of configuration of this provider.Example - Http Signature Provider may use "http-signatures", the configuration in yaml may then be:
security.providers: - http-signatures: inbound: ....
The name of the provider is the same string, unless explicitly defined- Specified by:
providerConfigKey
in interfaceSecurityProviderService
- Returns:
- name of the configuration key
-
providerClass
Description copied from interface:SecurityProviderService
Class of the provider of this provider service. The class may be used for cases where configuration requires explicit class name (e.g. when multiple providers use the same configuration key).- Specified by:
providerClass
in interfaceSecurityProviderService
- Returns:
- class of
SecurityProvider
provided by this provider service
-
providerInstance
Description copied from interface:SecurityProviderService
Create a new instance of the provider based on the configuration provided. The config is located at the config key of this provider.- Specified by:
providerInstance
in interfaceSecurityProviderService
- Parameters:
config
- Config with provider configuration- Returns:
- provider instance created from the
Config
provided
-