jsdsi
Class CertPathValidatorResult

java.lang.Object
  |
  +--jsdsi.CertPathValidatorResult
All Implemented Interfaces:
java.security.cert.CertPathValidatorResult, java.lang.Cloneable

public class CertPathValidatorResult
extends java.lang.Object
implements java.security.cert.CertPathValidatorResult

The result of a call to the cert path validator: returns true to isOk() if successful; otherwise getCause() returns the cause of the failure.

Author:
Sameer Ajmani
See Also:
CertPathValidator

Field Summary
(package private)  java.security.GeneralSecurityException ex
           
 
Constructor Summary
CertPathValidatorResult(java.security.GeneralSecurityException e)
           
 
Method Summary
 java.lang.Object clone()
           
 java.security.GeneralSecurityException getCause()
           
 boolean isOk()
           
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ex

java.security.GeneralSecurityException ex
Constructor Detail

CertPathValidatorResult

public CertPathValidatorResult(java.security.GeneralSecurityException e)
Method Detail

isOk

public boolean isOk()

getCause

public java.security.GeneralSecurityException getCause()

clone

public java.lang.Object clone()
Specified by:
clone in interface java.security.cert.CertPathValidatorResult
Overrides:
clone in class java.lang.Object