public enum AuthorizationExtent extends Enum<AuthorizationExtent>
AuthorizationType
action over. If Missing
usually implies this#SELF
Enum Constant and Description |
---|
ANY
Auth over any user including self
|
OTHERS
Auth over others belonging to a group this user may have ownership of
OWNER does not imply SELF. |
OWNER
Auth over SELF & Others below
|
SELF
Auth only over self
|
Modifier and Type | Method and Description |
---|---|
static AuthorizationExtent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthorizationExtent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthorizationExtent SELF
public static final AuthorizationExtent OTHERS
public static final AuthorizationExtent OWNER
public static final AuthorizationExtent ANY
public static AuthorizationExtent[] values()
for (AuthorizationExtent c : AuthorizationExtent.values()) System.out.println(c);
public static AuthorizationExtent 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. All rights reserved.