Uses of Interface
java.security.KeyStore.Entry
Packages that use KeyStore.Entry
-
Uses of KeyStore.Entry in java.security
Classes in java.security that implement KeyStore.EntryModifier and TypeClassDescriptionstatic final class
AKeyStore
entry that holds aPrivateKey
and corresponding certificate chain.static final class
AKeyStore
entry that holds aSecretKey
.static final class
AKeyStore
entry that holds a trustedCertificate
.Methods in java.security that return KeyStore.EntryModifier and TypeMethodDescriptionKeyStoreSpi.engineGetEntry
(String alias, KeyStore.ProtectionParameter protParam) Gets aKeyStore.Entry
for the specified alias with the specified protection parameter.final KeyStore.Entry
KeyStore.getEntry
(String alias, KeyStore.ProtectionParameter protParam) Gets a keystoreEntry
for the specified alias with the specified protection parameter.Methods in java.security with parameters of type KeyStore.EntryModifier and TypeMethodDescriptionvoid
KeyStoreSpi.engineSetEntry
(String alias, KeyStore.Entry entry, KeyStore.ProtectionParameter protParam) Saves aKeyStore.Entry
under the specified alias.final void
KeyStore.setEntry
(String alias, KeyStore.Entry entry, KeyStore.ProtectionParameter protParam) Saves a keystoreEntry
under the specified alias.Method parameters in java.security with type arguments of type KeyStore.EntryModifier and TypeMethodDescriptionboolean
KeyStoreSpi.engineEntryInstanceOf
(String alias, Class<? extends KeyStore.Entry> entryClass) Determines if the keystoreEntry
for the specifiedalias
is an instance or subclass of the specifiedentryClass
.final boolean
KeyStore.entryInstanceOf
(String alias, Class<? extends KeyStore.Entry> entryClass) Determines if the keystoreEntry
for the specifiedalias
is an instance or subclass of the specifiedentryClass
.