Class PkiEngineProvider
- java.lang.Object
-
- io.helidon.integrations.vault.secrets.pki.PkiEngineProvider
-
- All Implemented Interfaces:
InjectionProvider
,SecretsEngineProvider<PkiSecretsRx>
public class PkiEngineProvider extends Object implements SecretsEngineProvider<PkiSecretsRx>, InjectionProvider
Java Service Loader service for PKI Secrets engine for Vault integration.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface io.helidon.integrations.vault.spi.InjectionProvider
InjectionProvider.CreateInstanceFunction<T>, InjectionProvider.InjectionType<T>, InjectionProvider.InstanceConfig
-
-
Constructor Summary
Constructors Constructor Description PkiEngineProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PkiSecretsRx
createSecrets(Config config, RestApi restApi, String mount)
Create a secrets instance to provide API to access this engine.List<InjectionProvider.InjectionType<?>>
injectables()
List of injectable types supported by this provider.Engine<PkiSecretsRx>
supportedEngine()
Supported engine by this provider.
-
-
-
Method Detail
-
supportedEngine
public Engine<PkiSecretsRx> supportedEngine()
Description copied from interface:SecretsEngineProvider
Supported engine by this provider.- Specified by:
supportedEngine
in interfaceSecretsEngineProvider<PkiSecretsRx>
- Returns:
- engine that is supported, used to choose the correct provider for an engine
- See Also:
Vault.secrets(io.helidon.integrations.vault.Engine)
-
createSecrets
public PkiSecretsRx createSecrets(Config config, RestApi restApi, String mount)
Description copied from interface:SecretsEngineProvider
Create a secrets instance to provide API to access this engine.- Specified by:
createSecrets
in interfaceSecretsEngineProvider<PkiSecretsRx>
- Parameters:
config
- configuration that can be used to customize the enginerestApi
- to access REST API of the vault, preconfigured with tokenmount
- mount point of this engine's secrets- Returns:
- a new secrets instance to be used to access secrets
-
injectables
public List<InjectionProvider.InjectionType<?>> injectables()
Description copied from interface:InjectionProvider
List of injectable types supported by this provider.- Specified by:
injectables
in interfaceInjectionProvider
- Returns:
- list of types
-
-