public enum SslClientAuthMode extends Enum<SslClientAuthMode>
| Enum Constant and Description |
|---|
NOT_REQUESTED
SSL client authentication is not requested.
|
REQUESTED
SSL client authentication is requested but not required.
|
REQUIRED
SSL client authentication is required.
|
| Modifier and Type | Method and Description |
|---|---|
static SslClientAuthMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SslClientAuthMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SslClientAuthMode NOT_REQUESTED
public static final SslClientAuthMode REQUESTED
public static final SslClientAuthMode REQUIRED
public static SslClientAuthMode[] values()
for (SslClientAuthMode c : SslClientAuthMode.values()) System.out.println(c);
public static SslClientAuthMode 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 © 2018 JBoss by Red Hat. All rights reserved.