public enum SecureUserConfigType extends java.lang.Enum<SecureUserConfigType>
Enum Constant and Description |
---|
ClientOnly
Disable TLS server operation for this user; use no certificate for client TLS connections (recommended)
|
Common
Use the common server TLS transport if available
|
Dedicated
Create a dedicated TLS transport for this user with a certificate from a file
|
Generated
Create a dedicated TLS transport for this user and generate a self-signed certificate (not recommended)
|
Modifier and Type | Method and Description |
---|---|
static SecureUserConfigType |
fromInt(int i) |
static SecureUserConfigType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SecureUserConfigType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecureUserConfigType ClientOnly
public static final SecureUserConfigType Common
public static final SecureUserConfigType Dedicated
public static final SecureUserConfigType Generated
public static SecureUserConfigType[] values()
for (SecureUserConfigType c : SecureUserConfigType.values()) System.out.println(c);
public static SecureUserConfigType 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 nullpublic static SecureUserConfigType fromInt(int i)