1 23 24 package com.sun.enterprise.security.jauth.callback; 25 26 import java.security.KeyStore ; 27 import javax.security.auth.callback.Callback ; 28 29 37 public class TrustStoreCallback implements Callback { 38 39 private KeyStore trustStore; 40 41 44 public TrustStoreCallback() { } 45 46 52 public void setStore(KeyStore trustStore) { 53 this.trustStore = trustStore; 54 } 55 56 62 public KeyStore getTrustStore() { 63 return trustStore; 64 } 65 } 66 | Popular Tags |