Package | Description |
---|---|
org.glassfish.jersey |
Common Jersey core classes.
|
org.glassfish.jersey.client |
Jersey client-side classes.
|
Modifier and Type | Field and Description |
---|---|
private static SslConfigurator |
SslConfigurator.DEFAULT_CONFIG_NO_PROPS
Default SSL configuration that is used to create default SSL context instances that do not take into
account system properties.
|
Modifier and Type | Method and Description |
---|---|
SslConfigurator |
SslConfigurator.copy()
Create a copy of the current SSL configurator instance.
|
SslConfigurator |
SslConfigurator.keyManagerFactoryAlgorithm(java.lang.String algorithm)
Set the key manager factory algorithm.
|
SslConfigurator |
SslConfigurator.keyManagerFactoryProvider(java.lang.String provider)
Set the key manager factory provider.
|
SslConfigurator |
SslConfigurator.keyPassword(char[] password)
Set the password of the key in the key store.
|
SslConfigurator |
SslConfigurator.keyPassword(java.lang.String password)
Set the password of the key in the key store.
|
SslConfigurator |
SslConfigurator.keyStore(java.security.KeyStore keyStore)
Set the key store instance.
|
SslConfigurator |
SslConfigurator.keyStoreBytes(byte[] payload)
Set the key store payload as byte array.
|
SslConfigurator |
SslConfigurator.keyStoreFile(java.lang.String fileName)
Set the key store file name.
|
SslConfigurator |
SslConfigurator.keyStorePassword(char[] password)
Set the password of key store.
|
SslConfigurator |
SslConfigurator.keyStorePassword(java.lang.String password)
Set the password of key store.
|
SslConfigurator |
SslConfigurator.keyStoreProvider(java.lang.String keyStoreProvider)
Set the key store provider name.
|
SslConfigurator |
SslConfigurator.keyStoreType(java.lang.String keyStoreType)
Set the type of key store.
|
static SslConfigurator |
SslConfigurator.newInstance()
Get a new & initialized SSL configurator instance.
|
static SslConfigurator |
SslConfigurator.newInstance(boolean readSystemProperties)
Get a new SSL configurator instance.
|
SslConfigurator |
SslConfigurator.retrieve(java.util.Properties props)
Retrieve the SSL context configuration from the supplied properties.
|
SslConfigurator |
SslConfigurator.securityProtocol(java.lang.String protocol)
Set the SSLContext protocol.
|
SslConfigurator |
SslConfigurator.trustManagerFactoryAlgorithm(java.lang.String algorithm)
Set the trust manager factory algorithm.
|
SslConfigurator |
SslConfigurator.trustManagerFactoryProvider(java.lang.String provider)
Set the trust manager factory provider.
|
SslConfigurator |
SslConfigurator.trustStore(java.security.KeyStore trustStore)
Set the trust store instance.
|
SslConfigurator |
SslConfigurator.trustStoreBytes(byte[] payload)
Set the trust store payload as byte array.
|
SslConfigurator |
SslConfigurator.trustStoreFile(java.lang.String fileName)
Set the trust store file name.
|
SslConfigurator |
SslConfigurator.trustStorePassword(java.lang.String password)
Set the password of trust store.
|
SslConfigurator |
SslConfigurator.trustStoreProvider(java.lang.String trustStoreProvider)
Set the trust store provider name.
|
SslConfigurator |
SslConfigurator.trustStoreType(java.lang.String trustStoreType)
Set the type of trust store.
|
Constructor and Description |
---|
SslConfigurator(SslConfigurator that) |
Modifier and Type | Field and Description |
---|---|
private SslConfigurator |
JerseyClientBuilder.sslConfigurator |