javax.security.auth.message.callback
Class TrustStoreCallback

java.lang.Object
  extended by javax.security.auth.message.callback.TrustStoreCallback
All Implemented Interfaces:
Callback

public class TrustStoreCallback
extends Object
implements Callback

Callback for trusted certificate KeyStore.

A trusted certificate KeyStore may be used to determine whether a given certificate chain can be trusted.

Version:
%I%, %G%

Constructor Summary
TrustStoreCallback()
          Create a TrustStoreCallback.
 
Method Summary
 KeyStore getTrustStore()
          Used by the TrustStore user to obtain the TrustStore set within the Callback.
 void setTrustStore(KeyStore trustStore)
          Used by the CallbackHandler to set the trusted certificate keystore within the Callback.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TrustStoreCallback

public TrustStoreCallback()
Create a TrustStoreCallback.

Method Detail

setTrustStore

public void setTrustStore(KeyStore trustStore)
Used by the CallbackHandler to set the trusted certificate keystore within the Callback.

Parameters:
trustStore - The trusted certificate KeyStore, which must already be loaded.

getTrustStore

public KeyStore getTrustStore()
Used by the TrustStore user to obtain the TrustStore set within the Callback.

Returns:
The trusted certificate KeyStore. The KeyStore is guaranteed to already be loaded.


Copyright © 2005-2015 Oracle Corporation. All Rights Reserved.