public enum AuthorizationOperCheck extends Enum<AuthorizationOperCheck>
Enum Constant and Description |
---|
CREATE
Create access
|
DELETE
Delete access
|
EXECUTE
Execute access
|
FINAL
"How" parameter, Access to the specific data node is requested.
|
INTERMEDIATE
"How" parameter,
Access to the given data node or its descendants is requested.
|
READ
Read access.
|
UPDATE
Update access
|
WRITE
Write access.
|
Modifier and Type | Method and Description |
---|---|
static AuthorizationOperCheck |
getType(int l)
Get a AuthorizationOperationCheck for given int value or
null if the int value does not represent a enum.
|
int |
getValue()
Get the int value representation of this authorization operation check
|
static AuthorizationOperCheck |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthorizationOperCheck[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthorizationOperCheck READ
public static final AuthorizationOperCheck EXECUTE
public static final AuthorizationOperCheck CREATE
public static final AuthorizationOperCheck UPDATE
public static final AuthorizationOperCheck DELETE
public static final AuthorizationOperCheck WRITE
public static final AuthorizationOperCheck INTERMEDIATE
public static final AuthorizationOperCheck FINAL
public static AuthorizationOperCheck[] values()
for (AuthorizationOperCheck c : AuthorizationOperCheck.values()) System.out.println(c);
public static AuthorizationOperCheck 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 nullpublic int getValue()
public static AuthorizationOperCheck getType(int l)
l
- int value for this enum