Class HttpClientSslOptions
- java.lang.Object
-
- io.gravitee.connector.http.endpoint.HttpClientSslOptions
-
- All Implemented Interfaces:
Serializable
public class HttpClientSslOptions extends Object implements Serializable
- Author:
- David BRASSELY (david.brassely at graviteesource.com), GraviteeSource Team
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description HttpClientSslOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description KeyStoregetKeyStore()TrustStoregetTrustStore()booleanisHostnameVerifier()booleanisTrustAll()voidsetHostnameVerifier(boolean hostnameVerifier)voidsetKeyStore(KeyStore keyStore)voidsetTrustAll(boolean trustAll)voidsetTrustStore(TrustStore trustStore)
-
-
-
Method Detail
-
isHostnameVerifier
public boolean isHostnameVerifier()
-
setHostnameVerifier
public void setHostnameVerifier(boolean hostnameVerifier)
-
isTrustAll
public boolean isTrustAll()
-
setTrustAll
public void setTrustAll(boolean trustAll)
-
getTrustStore
public TrustStore getTrustStore()
-
setTrustStore
public void setTrustStore(TrustStore trustStore)
-
getKeyStore
public KeyStore getKeyStore()
-
setKeyStore
public void setKeyStore(KeyStore keyStore)
-
-