Class TrustStoreCallback
- java.lang.Object
-
- jakarta.security.auth.message.callback.TrustStoreCallback
-
-
Constructor Summary
Constructors Constructor Description TrustStoreCallback()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description 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.
-
-
-
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.
-
-