public static enum DelegatingSSLSocketFactory.SSLChannelMode extends Enum<DelegatingSSLSocketFactory.SSLChannelMode>
Default_JSSE is not truly the the default JSSE implementation because the GCM cipher is disabled when running on Java 8. However, the name was not changed in order to preserve backwards compatibility. Instead, a new mode called Default_JSSE_with_GCM delegates to the default JSSE implementation with no changes to the list of enabled ciphers.
Enum Constant and Description |
---|
Default |
Default_JSSE |
Default_JSSE_with_GCM |
OpenSSL |
Modifier and Type | Method and Description |
---|---|
static DelegatingSSLSocketFactory.SSLChannelMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DelegatingSSLSocketFactory.SSLChannelMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DelegatingSSLSocketFactory.SSLChannelMode OpenSSL
public static final DelegatingSSLSocketFactory.SSLChannelMode Default
public static final DelegatingSSLSocketFactory.SSLChannelMode Default_JSSE
public static final DelegatingSSLSocketFactory.SSLChannelMode Default_JSSE_with_GCM
public static DelegatingSSLSocketFactory.SSLChannelMode[] values()
for (DelegatingSSLSocketFactory.SSLChannelMode c : DelegatingSSLSocketFactory.SSLChannelMode.values()) System.out.println(c);
public static DelegatingSSLSocketFactory.SSLChannelMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2008–2020 Apache Software Foundation. All rights reserved.