public enum AuthorizationOutcome extends Enum<AuthorizationOutcome>
| Enum Constant and Description |
|---|
ALLOW
Indicates that access to the related resource is allowed.
|
DENY
Indicates that access to the related resource is denied.
|
| Modifier and Type | Method and Description |
|---|---|
static AuthorizationOutcome |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthorizationOutcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthorizationOutcome ALLOW
This flag generally corresponds to GRANT CQL statements.
public static final AuthorizationOutcome DENY
This flag generally corresponds to RESTRICT CQL statements.
public static AuthorizationOutcome[] values()
for (AuthorizationOutcome c : AuthorizationOutcome.values()) System.out.println(c);
public static AuthorizationOutcome 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 © 2022. All rights reserved.