Class KeyStore.PrivateKeyEntry
java.lang.Object
java.security.KeyStore.PrivateKeyEntry
- All Implemented Interfaces:
KeyStore.Entry
- Enclosing class:
KeyStore
A
KeyStore entry that holds a PrivateKey
and corresponding certificate chain.- Since:
- 1.5
-
Nested Class Summary
Nested classes/interfaces declared in interface KeyStore.Entry
KeyStore.Entry.AttributeModifier and TypeInterfaceDescriptionstatic interfaceAn attribute associated with a keystore entry. -
Constructor Summary
ConstructorsConstructorDescriptionPrivateKeyEntry(PrivateKey privateKey, Certificate[] chain) Constructs aPrivateKeyEntrywith aPrivateKeyand corresponding certificate chain.PrivateKeyEntry(PrivateKey privateKey, Certificate[] chain, Set<KeyStore.Entry.Attribute> attributes) Constructs aPrivateKeyEntrywith aPrivateKeyand corresponding certificate chain and associated entry attributes. -
Method Summary
Modifier and TypeMethodDescriptionRetrieves the attributes associated with an entry.Gets the end entityCertificatefrom the certificate chain in this entry.Gets theCertificatechain from this entry.Gets thePrivateKeyfrom this entry.toString()Returns a string representation of this PrivateKeyEntry.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
PrivateKeyEntry
Constructs aPrivateKeyEntrywith aPrivateKeyand corresponding certificate chain.The specified
chainis cloned before it is stored in the newPrivateKeyEntryobject.- Parameters:
privateKey- thePrivateKeychain- an array ofCertificates representing the certificate chain. The chain must be ordered and contain aCertificateat index 0 corresponding to the private key.- Throws:
NullPointerException- ifprivateKeyorchainisnullIllegalArgumentException- if the specified chain has a length of 0, if the specified chain does not containCertificates of the same type, or if thePrivateKeyalgorithm does not match the algorithm of thePublicKeyin the end entityCertificate(at index 0)
-
PrivateKeyEntry
public PrivateKeyEntry(PrivateKey privateKey, Certificate[] chain, Set<KeyStore.Entry.Attribute> attributes) Constructs aPrivateKeyEntrywith aPrivateKeyand corresponding certificate chain and associated entry attributes.The specified
chainandattributesare cloned before they are stored in the newPrivateKeyEntryobject.- Parameters:
privateKey- thePrivateKeychain- an array ofCertificates representing the certificate chain. The chain must be ordered and contain aCertificateat index 0 corresponding to the private key.attributes- the attributes- Throws:
NullPointerException- ifprivateKey,chainorattributesisnullIllegalArgumentException- if the specified chain has a length of 0, if the specified chain does not containCertificates of the same type, or if thePrivateKeyalgorithm does not match the algorithm of thePublicKeyin the end entityCertificate(at index 0)- Since:
- 1.8
-
-
Method Details
-
getPrivateKey
Gets thePrivateKeyfrom this entry.- Returns:
- the
PrivateKeyfrom this entry
-
getCertificateChain
Gets theCertificatechain from this entry.The stored chain is cloned before being returned.
- Returns:
- an array of
Certificates corresponding to the certificate chain for the public key. If the certificates are of type X.509, the runtime type of the returned array isX509Certificate[].
-
getCertificate
Gets the end entityCertificatefrom the certificate chain in this entry.- Returns:
- the end entity
Certificate(at index 0) from the certificate chain in this entry. If the certificate is of type X.509, the runtime type of the returned certificate isX509Certificate.
-
getAttributes
Retrieves the attributes associated with an entry.- Specified by:
getAttributesin interfaceKeyStore.Entry- Returns:
- an unmodifiable
Setof attributes, possibly empty - Since:
- 1.8
-
toString
-