Class KeyStorage.NoopKeyStorage
java.lang.Object
org.gridgain.internal.encryption.storage.KeyStorage.NoopKeyStorage
- All Implemented Interfaces:
KeyStorage
- Enclosing interface:
- KeyStorage
No-op key chains storage implementation.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.gridgain.internal.encryption.storage.KeyStorage
KeyStorage.NoopKeyStorage -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescription@Nullable KeyChaingetKeyChain(String id) Returns key chain for provided identifier.Returns all key chains.voidRemoves key chain from storage associated with provided identifier.voidStores provided key chain with identifier.voidStores all provided key chains with associated identifiers.
-
Field Details
-
INSTANCE
-
-
Method Details
-
getKeyChain
Description copied from interface:KeyStorageReturns key chain for provided identifier.- Specified by:
getKeyChainin interfaceKeyStorage- Parameters:
id- Key chain identifier.
-
getKeyChains
Description copied from interface:KeyStorageReturns all key chains.- Specified by:
getKeyChainsin interfaceKeyStorage
-
store
Description copied from interface:KeyStorageStores provided key chain with identifier.- Specified by:
storein interfaceKeyStorage- Parameters:
id- Key chain identifier.keyChain- Key chain.
-
storeAll
Description copied from interface:KeyStorageStores all provided key chains with associated identifiers.- Specified by:
storeAllin interfaceKeyStorage- Parameters:
keyChains- Key chains.
-
remove
Description copied from interface:KeyStorageRemoves key chain from storage associated with provided identifier.- Specified by:
removein interfaceKeyStorage- Parameters:
id- Key chain identifier.
-