1 23 24 package com.sun.enterprise.security.jauth.callback; 25 26 import java.security.KeyStore ; 27 import java.security.cert.CertStore ; 28 import javax.security.auth.callback.Callback ; 29 30 41 public class CertStoreCallback implements Callback { 42 43 private CertStore certStore; 44 45 48 public CertStoreCallback() { } 49 50 57 public void setStore(CertStore certStore) { 58 this.certStore = certStore; 59 } 60 61 68 public CertStore getCertStore() { 69 return certStore; 70 } 71 } 72 | Popular Tags |