public static enum SSLDataProcessingWorker.SSL_MODES extends java.lang.Enum<SSLDataProcessingWorker.SSL_MODES>
| Enum Constant and Description |
|---|
CLEAR
clear text
|
MUTUAL_AUTH
server + client authentication
|
SERVER_AUTH
server only authentication (needs a trustStore at clients)
|
| Modifier and Type | Method and Description |
|---|---|
static SSLDataProcessingWorker.SSL_MODES |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SSLDataProcessingWorker.SSL_MODES[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SSLDataProcessingWorker.SSL_MODES CLEAR
public static final SSLDataProcessingWorker.SSL_MODES SERVER_AUTH
public static final SSLDataProcessingWorker.SSL_MODES MUTUAL_AUTH
public static SSLDataProcessingWorker.SSL_MODES[] values()
for (SSLDataProcessingWorker.SSL_MODES c : SSLDataProcessingWorker.SSL_MODES.values()) System.out.println(c);
public static SSLDataProcessingWorker.SSL_MODES 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