java.security.cert
public class PKIXCertPathValidatorResult extends Object implements CertPathValidatorResult
See Also: CertPathValidator
Constructor Summary | |
---|---|
PKIXCertPathValidatorResult(TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey)
Creates a new PKIXCertPathValidatorResult.
|
Method Summary | |
---|---|
Object | clone()
Returns a copy of this object.
|
PolicyNode | getPolicyTree()
Returns the root node of the policy tree.
|
PublicKey | getPublicKey()
Returns the subject public key.
|
TrustAnchor | getTrustAnchor()
Returns the trust anchor.
|
String | toString()
Returns a printable string representation of this result.
|
Parameters: trustAnchor The trust anchor. policyTree The root node of the policy tree. subjectPublicKey The public key.
Throws: NullPointerException If either trustAnchor or subjectPublicKey is null.
Returns: The copy.
Returns: The root node of the policy tree.
Returns: The subject public key.
Returns: The trust anchor.
Returns: A printable string representation of this result.