TrustStoreCallbackpublic class TrustStoreCallback extends Object implements CallbackCallback for trusted certificate KeyStore.
A trusted certificate KeyStore may be used to determine
whether a given certificate chain can be trusted. |
Fields Summary |
---|
private KeyStore | trustStore |
Constructors Summary |
---|
public TrustStoreCallback()Create a TrustStoreCallback.
|
Methods Summary |
---|
public java.security.KeyStore | getTrustStore()Used by the TrustStore user to obtain the TrustStore set within the
Callback.
return trustStore;
| public void | setTrustStore(java.security.KeyStore trustStore)Used by the CallbackHandler to set the trusted certificate keystore
within the Callback.
this.trustStore = trustStore;
|
|