Uses of Interface
java.security.KeyStore.Entry
Packages that use KeyStore.Entry
- 
Uses of KeyStore.Entry in java.securityClasses in java.security that implement KeyStore.EntryModifier and TypeClassDescriptionstatic classAKeyStoreentry that holds aPrivateKeyand corresponding certificate chain.static classAKeyStoreentry that holds aSecretKey.static classAKeyStoreentry that holds a trustedCertificate.Methods in java.security that return KeyStore.EntryModifier and TypeMethodDescriptionKeyStoreSpi.engineGetEntry(String alias, KeyStore.ProtectionParameter protParam)Gets aKeyStore.Entryfor the specified alias with the specified protection parameter.KeyStore.getEntry(String alias, KeyStore.ProtectionParameter protParam)Gets a keystoreEntryfor the specified alias with the specified protection parameter.Methods in java.security with parameters of type KeyStore.EntryModifier and TypeMethodDescriptionvoidKeyStoreSpi.engineSetEntry(String alias, KeyStore.Entry entry, KeyStore.ProtectionParameter protParam)Saves aKeyStore.Entryunder the specified alias.voidKeyStore.setEntry(String alias, KeyStore.Entry entry, KeyStore.ProtectionParameter protParam)Saves a keystoreEntryunder the specified alias.Method parameters in java.security with type arguments of type KeyStore.EntryModifier and TypeMethodDescriptionbooleanKeyStoreSpi.engineEntryInstanceOf(String alias, Class<? extends KeyStore.Entry> entryClass)Determines if the keystoreEntryfor the specifiedaliasis an instance or subclass of the specifiedentryClass.booleanKeyStore.entryInstanceOf(String alias, Class<? extends KeyStore.Entry> entryClass)Determines if the keystoreEntryfor the specifiedaliasis an instance or subclass of the specifiedentryClass.