Package jsdsi.certstore

Package to allow JSDSI to easily work with various stores of Certificates by the use of differing implementations of a Data Access Object (see CertificateDAO).

See:
          Description

Interface Summary
CertificateDAO Data Access Object interface for CertStores
 

Class Summary
AbstractJsdsiCertStore Abstract convenience class for JSDSI CertStores by providing typecasting functionality.
InMemoryCertificateDAO Pure memory based implementation of CertificateDAO, storing certificates indexed by various MultiMaps.
JsdsiCertStore An Adaptor class between a java.security.CertStore and a jsdsi.certstore.CertificateDAO
JsdsiCertStoreParameters java.security.cert.CertStoreParameters implementation for use with JSDSI.
 

Exception Summary
JsdsiCertStoreException  
 

Package jsdsi.certstore Description

Package to allow JSDSI to easily work with various stores of Certificates by the use of differing implementations of a Data Access Object (see CertificateDAO).

For example, to create an 'In Memory' CertStore:

jsdsi.certstore.CertificateDAO dao = new jsdsi.certstore.InMemoryCertificateDAO();
java.security.cert.CertStoreParameters params = new jsdsi.certstore.JsdsiCertStoreParameters(dao);
java.security.cert.CertStore store = java.security.cert.CertStore.getInstance("SPKI",params);



Copyright © 2002-2006 JSDSI. All Rights Reserved.