public enum AccessMechanism extends Enum<AccessMechanism>
Enum Constant and Description |
---|
HTTP
The request was submitted directyl as a manaagement operation over the HTTP interface.
|
JMX
The request was submitted over JMX and subsequently converted to a management operation.
|
NATIVE
The request was submitted directly as a management operation over the native interface or as a management operation
natively but after a HTTP upgrade.
|
Modifier and Type | Method and Description |
---|---|
static AccessMechanism |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessMechanism[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessMechanism NATIVE
public static final AccessMechanism HTTP
public static final AccessMechanism JMX
public static AccessMechanism[] values()
for (AccessMechanism c : AccessMechanism.values()) System.out.println(c);
public static AccessMechanism 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.