JavaTM 2 Platform
Standard Ed. 5.0

Uses of Class
java.security.KeyStoreException

Packages that use KeyStoreException
java.security Provides the classes and interfaces for the security framework. 
java.security.cert Provides classes and interfaces for parsing and managing certificates, certificate revocation lists (CRLs), and certification paths. 
javax.net.ssl Provides classes for the secure socket package. 
 

Uses of KeyStoreException in java.security
 

Methods in java.security that throw KeyStoreException
 Enumeration<String> KeyStore.aliases()
          Lists all the alias names of this keystore.
 boolean KeyStore.containsAlias(String alias)
          Checks if the given alias exists in this keystore.
 void KeyStore.deleteEntry(String alias)
          Deletes the entry identified by the given alias from this keystore.
abstract  void KeyStoreSpi.engineDeleteEntry(String alias)
          Deletes the entry identified by the given alias from this keystore.
 KeyStore.Entry KeyStoreSpi.engineGetEntry(String alias, KeyStore.ProtectionParameter protParam)
          Gets a KeyStore.Entry for the specified alias with the specified protection parameter.
abstract  void KeyStoreSpi.engineSetCertificateEntry(String alias, Certificate cert)
          Assigns the given certificate to the given alias.
 void KeyStoreSpi.engineSetEntry(String alias, KeyStore.Entry entry, KeyStore.ProtectionParameter protParam)
          Saves a KeyStore.Entry under the specified alias.
abstract  void KeyStoreSpi.engineSetKeyEntry(String alias, byte[] key, Certificate[] chain)
          Assigns the given key (that has already been protected) to the given alias.
abstract  void KeyStoreSpi.engineSetKeyEntry(String alias, Key key, char[] password, Certificate[] chain)
          Assigns the given key to the given alias, protecting it with the given password.
 boolean KeyStore.entryInstanceOf(String alias, Class<? extends KeyStore.Entry> entryClass)
          Determines if the keystore Entry for the specified alias is an instance or subclass of the specified entryClass.
 Certificate KeyStore.getCertificate(String alias)
          Returns the certificate associated with the given alias.
 String KeyStore.getCertificateAlias(Certificate cert)
          Returns the (alias) name of the first keystore entry whose certificate matches the given certificate.
 Certificate[] KeyStore.getCertificateChain(String alias)
          Returns the certificate chain associated with the given alias.
 Date KeyStore.getCreationDate(String alias)
          Returns the creation date of the entry identified by the given alias.
 KeyStore.Entry KeyStore.getEntry(String alias, KeyStore.ProtectionParameter protParam)
          Gets a keystore Entry for the specified alias with the specified protection parameter.
static KeyStore KeyStore.getInstance(String type)
          Generates a keystore object of the given type.
static KeyStore KeyStore.getInstance(String type, Provider provider)
          Generates a keystore object for the specified keystore type from the specified provider.
static KeyStore KeyStore.getInstance(String type, String provider)
          Generates a keystore object for the specified keystore type from the specified provider.