Uses of Interface
org.forgerock.audit.secure.KeyStoreHandler
-
Packages that use KeyStoreHandler Package Description org.forgerock.audit.providers Dependencies that can be made available to theAuditService
via aDependencyProvider
.org.forgerock.audit.secure Classes for handling secure audit logging. -
-
Uses of KeyStoreHandler in org.forgerock.audit.providers
Methods in org.forgerock.audit.providers that return KeyStoreHandler Modifier and Type Method Description KeyStoreHandler
DefaultKeyStoreHandlerProvider. getKeystoreHandler(String name)
KeyStoreHandler
KeyStoreHandlerProvider. getKeystoreHandler(String name)
Returns the keystore handler corresponding to the given name.Methods in org.forgerock.audit.providers with parameters of type KeyStoreHandler Modifier and Type Method Description void
DefaultKeyStoreHandlerProvider. registerKeyStoreHandler(String name, KeyStoreHandler handler)
Register a storage with the given name.Constructor parameters in org.forgerock.audit.providers with type arguments of type KeyStoreHandler Constructor Description DefaultKeyStoreHandlerProvider(Map<String,KeyStoreHandler> handlers)
Creates a provider with someKeyStoreHandler
instances. -
Uses of KeyStoreHandler in org.forgerock.audit.secure
Classes in org.forgerock.audit.secure that implement KeyStoreHandler Modifier and Type Class Description class
JcaKeyStoreHandler
Default implementation of a Keystore handler.class
KeyStoreHandlerDecorator
Decorate aKeyStoreHandler
in order to add some commons utility methods to read or write keystore's entries.Methods in org.forgerock.audit.secure with parameters of type KeyStoreHandler Modifier and Type Method Description void
KeyStoreSecureStorage. setKeyStoreHandler(KeyStoreHandler keyStoreHandler)
Set the key store handler.Constructors in org.forgerock.audit.secure with parameters of type KeyStoreHandler Constructor Description KeyStoreHandlerDecorator(KeyStoreHandler delegate)
Constructs a new KeyStoreHandlerDecorator.KeyStoreSecureStorage(KeyStoreHandler keyStoreHandler, PrivateKey privateKey)
Creates the storage with a keystore handler, initialized to verify only.KeyStoreSecureStorage(KeyStoreHandler keyStoreHandler, PublicKey publicKey)
Creates the storage with a keystore handler, initialized to verify only.KeyStoreSecureStorage(KeyStoreHandler keyStoreHandler, PublicKey publicKey, PrivateKey privateKey)
Creates the storage with a keystore handler, initialized to verify only.
-