javax.security.auth.message.callback
public class: CertStoreCallback [javadoc |
source]
java.lang.Object
javax.security.auth.message.callback.CertStoreCallback
All Implemented Interfaces:
Callback
Callback for CertStore.
A CertStore is a generic repository for certificates.
CertStores may be searched to locate public key certificates, as well
as to put together certificate chains. Such a search may be necessary
when the caller needs to verify a signature.
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from javax.security.auth.message.callback.CertStoreCallback Detail: |
public CertStore getCertStore() {
return certStore;
}
Get the requested CertStore. |
public void setCertStore(CertStore certStore) {
this.certStore = certStore;
}
|