public enum AuthMechanism extends Enum<AuthMechanism>
Enum Constant and Description |
---|
CLIENT_CERT |
DIGEST |
KERBEROS |
LOCAL |
PLAIN |
Modifier and Type | Method and Description |
---|---|
static AuthMechanism |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthMechanism[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthMechanism LOCAL
public static final AuthMechanism CLIENT_CERT
public static final AuthMechanism KERBEROS
public static final AuthMechanism DIGEST
public static final AuthMechanism PLAIN
public static AuthMechanism[] values()
for (AuthMechanism c : AuthMechanism.values()) System.out.println(c);
public static AuthMechanism 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 © 2023 JBoss by Red Hat. All rights reserved.