public static enum SecurityConfigurator.SslProvider extends java.lang.Enum<SecurityConfigurator.SslProvider>
SSLEngine.| Enum Constant and Description |
|---|
AUTO
Auto detect which implementation to use.
|
JDK
Use the stock JDK implementation.
|
OPENSSL
Use the openssl implementation.
|
| Modifier and Type | Method and Description |
|---|---|
static SecurityConfigurator.SslProvider |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SecurityConfigurator.SslProvider[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityConfigurator.SslProvider JDK
public static final SecurityConfigurator.SslProvider OPENSSL
public static final SecurityConfigurator.SslProvider AUTO
public static SecurityConfigurator.SslProvider[] values()
for (SecurityConfigurator.SslProvider c : SecurityConfigurator.SslProvider.values()) System.out.println(c);
public static SecurityConfigurator.SslProvider valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null