jsdsi
Class CertPathParameters

java.lang.Object
  |
  +--jsdsi.CertPathParameters
All Implemented Interfaces:
java.security.cert.CertPathParameters, java.lang.Cloneable
Direct Known Subclasses:
IssuerCertPathParameters, SubjectCertPathParameters

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

Parameters to the cert path builder and validator. Specifies the statement (a SPKI/SDSI cert) that needs to be proved or validated and the certificate store from which to fetch certificates.

Author:
Sameer Ajmani
See Also:
CertStore, CertPathBuilder, CertPathValidator

Constructor Summary
CertPathParameters(Cert c, java.security.cert.CertStore s)
           
 
Method Summary
 java.lang.Object clone()
           
 Cert getCert()
           
 java.security.cert.CertStore getStore()
           
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CertPathParameters

public CertPathParameters(Cert c,
                          java.security.cert.CertStore s)
                   throws java.security.InvalidAlgorithmParameterException
Method Detail

getCert

public Cert getCert()

getStore

public java.security.cert.CertStore getStore()

clone

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