1 22 package javax.security.auth.message.callback; 23 24 import java.security.cert.CertStore ; 25 26 import javax.security.auth.callback.Callback ; 27 28 30 42 public class CertStoreCallback implements Callback  43 { 44 private CertStore certStore; 45 46 49 public CertStoreCallback() 50 { 51 } 52 53 59 public CertStore getCertStore() 60 { 61 return certStore; 62 } 63 64 70 public void setCertStore(CertStore certStore) 71 { 72 this.certStore = certStore; 73 } 74 } 75 | Popular Tags |