FileDocCategorySizeDatePackage
CertStoreCallback.javaAPI DocGlassfish v2 API3071Fri May 04 22:36:10 BST 2007javax.security.auth.message.callback

CertStoreCallback

public class CertStoreCallback extends Object implements 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.

version
%I%, %G%

Fields Summary
private CertStore
certStore
Constructors Summary
public CertStoreCallback()
Create a CertStoreCallback.

 
Methods Summary
public java.security.cert.CertStoregetCertStore()
Used by the CertStore user to obtain the CertStore set within the Callback.

return
The CertStore, or null.

	return certStore;
    
public voidsetCertStore(java.security.cert.CertStore certStore)
Used by the CallbackHandler to set the CertStore within the Callback.

param
certStore The certificate store, which may be null

	this.certStore = certStore;