Class TLSClientParameters
java.lang.Object
org.apache.cxf.configuration.jsse.TLSParameterBase
org.apache.cxf.configuration.jsse.TLSClientParameters
This class extends
TLSParameterBase
with client-specific
SSL/TLS parameters.-
Field Summary
Fields inherited from class org.apache.cxf.configuration.jsse.TLSParameterBase
certAlias, certConstraints, cipherSuiteFilters, ciphersuites, keyManagers, protocol, provider, secureRandom, trustManagers
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Get custom HostnameVerifierint
Returns the SSL cache timeout in seconds if it has been configured or the default valueGet the SSLContext parameter to use (if it has been set)final SSLSocketFactory
Returns the SSLSocketFactory to be used, or null if none has been set.int
hashCode()
boolean
Returns whether or not JSSE omits checking if the host name specified in the URL matches that of the Common Name (CN) on the server's certificate.boolean
Returns whether or notHttpsURLConnection.getDefaultHostnameVerifier()
should be used to create https connections.boolean
Returns whether or notHttpsURLConnection.getDefaultSSLSocketFactory()
should be used to create https connections.void
setDisableCNCheck
(boolean disableCNCheck) Set whether or not JSEE should omit checking if the host name specified in the URL matches that of the Common Name (CN) on the server's certificate.void
setHostnameVerifier
(HostnameVerifier verifier) Set custom HostnameVerifiervoid
setSslCacheTimeout
(int sslCacheTimeout) This sets the SSL Session Cache timeout value in seconds for client sessions handled by CXFvoid
setSslContext
(SSLContext sslContext) Set an SSLContext parameter to use to create https connectionsfinal void
setSSLSocketFactory
(SSLSocketFactory factory) This sets the SSLSocketFactory to use, causing all other properties of this bean (and its superclass) to get ignored (this takes precendence).void
setUseHttpsURLConnectionDefaultHostnameVerifier
(boolean useHttpsURLConnectionDefaultHostnameVerifier) Sets whether or notHttpsURLConnection.getDefaultHostnameVerifier()
should be used to create https connections.void
setUseHttpsURLConnectionDefaultSslSocketFactory
(boolean useHttpsURLConnectionDefaultSslSocketFactory) Sets whether or notHttpsURLConnection.getDefaultSSLSocketFactory()
should be used to create https connections.Methods inherited from class org.apache.cxf.configuration.jsse.TLSParameterBase
getCertAlias, getCertConstraints, getCipherSuites, getCipherSuitesFilter, getJsseProvider, getKeyManagers, getSecureRandom, getSecureSocketProtocol, getTrustManagers, setCertAlias, setCertConstraints, setCipherSuites, setCipherSuitesFilter, setJsseProvider, setKeyManagers, setSecureRandom, setSecureSocketProtocol, setTrustManagers
-
Constructor Details
-
TLSClientParameters
public TLSClientParameters()
-
-
Method Details
-
setHostnameVerifier
Set custom HostnameVerifier- Parameters:
verifier
- hostname verifier
-
getHostnameVerifier
Get custom HostnameVerifier- Returns:
- hostname verifier
-
setDisableCNCheck
public void setDisableCNCheck(boolean disableCNCheck) Set whether or not JSEE should omit checking if the host name specified in the URL matches that of the Common Name (CN) on the server's certificate. Default is false; this attribute should not be set to true during production use. -
isDisableCNCheck
public boolean isDisableCNCheck()Returns whether or not JSSE omits checking if the host name specified in the URL matches that of the Common Name (CN) on the server's certificate. -
setSSLSocketFactory
This sets the SSLSocketFactory to use, causing all other properties of this bean (and its superclass) to get ignored (this takes precendence). -
getSSLSocketFactory
Returns the SSLSocketFactory to be used, or null if none has been set. -
getSslCacheTimeout
public int getSslCacheTimeout()Returns the SSL cache timeout in seconds if it has been configured or the default value -
setSslCacheTimeout
public void setSslCacheTimeout(int sslCacheTimeout) This sets the SSL Session Cache timeout value in seconds for client sessions handled by CXF -
isUseHttpsURLConnectionDefaultSslSocketFactory
public boolean isUseHttpsURLConnectionDefaultSslSocketFactory()Returns whether or notHttpsURLConnection.getDefaultSSLSocketFactory()
should be used to create https connections. Iftrue
,TLSParameterBase.getJsseProvider()
,TLSParameterBase.getSecureSocketProtocol()
,TLSParameterBase.getTrustManagers()
,TLSParameterBase.getKeyManagers()
,TLSParameterBase.getSecureRandom()
,TLSParameterBase.getCipherSuites()
andTLSParameterBase.getCipherSuitesFilter()
are ignored. -
setUseHttpsURLConnectionDefaultSslSocketFactory
public void setUseHttpsURLConnectionDefaultSslSocketFactory(boolean useHttpsURLConnectionDefaultSslSocketFactory) Sets whether or notHttpsURLConnection.getDefaultSSLSocketFactory()
should be used to create https connections. -
isUseHttpsURLConnectionDefaultHostnameVerifier
public boolean isUseHttpsURLConnectionDefaultHostnameVerifier()Returns whether or notHttpsURLConnection.getDefaultHostnameVerifier()
should be used to create https connections. Iftrue
,isDisableCNCheck()
is ignored. -
setUseHttpsURLConnectionDefaultHostnameVerifier
public void setUseHttpsURLConnectionDefaultHostnameVerifier(boolean useHttpsURLConnectionDefaultHostnameVerifier) Sets whether or notHttpsURLConnection.getDefaultHostnameVerifier()
should be used to create https connections. -
hashCode
public int hashCode() -
equals
-
getSslContext
Get the SSLContext parameter to use (if it has been set) -
setSslContext
Set an SSLContext parameter to use to create https connections
-