Package com.ibm.wsspi.ssl
Interface TrustManagerExtendedInfo
public interface TrustManagerExtendedInfo
TrustManager Extended Info Interface. This interface is extended by custom Trust Managers which need information about the remote connection information to make decisions about whether to trust the remote connection.
- Since:
- WAS 6.1
- See Also:
-
JSSEHelper
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setCustomProperties
(Properties customProperties) Method called by WebSphere Application Server runtime to set the custom properties configured for the custom TrustManager.void
setExtendedInfo
(Map<String, Object> info) Method called by WebSphere Application Server runtime to set the target host information and potentially other connection info in the future.void
setSSLConfig
(Properties config) Method called by WebSphere Application Server runtime to set the SSL configuration properties being used for this connection.
-
Method Details
-
setCustomProperties
Method called by WebSphere Application Server runtime to set the custom properties configured for the custom TrustManager.- Parameters:
customProperties
-
-
setExtendedInfo
Method called by WebSphere Application Server runtime to set the target host information and potentially other connection info in the future.- Parameters:
info
- - contains information about the target connection.
-
setSSLConfig
Method called by WebSphere Application Server runtime to set the SSL configuration properties being used for this connection.- Parameters:
config
- - contains a property for the SSL configuration.
-