1 22 package javax.security.auth.message.callback; 23 24 import java.security.KeyStore ; 25 26 import javax.security.auth.callback.Callback ; 27 28 30 39 public class TrustStoreCallback implements Callback  40 { 41 private KeyStore trustStore; 42 43 46 public TrustStoreCallback() 47 { 48 } 49 50 55 public KeyStore getTrustStore() 56 { 57 return trustStore; 58 } 59 60 65 public void setTrustStore(KeyStore trustStore) 66 { 67 this.trustStore = trustStore; 68 } 69 } 70 | Popular Tags |