public static enum PageRightsFilter.Right extends java.lang.Enum<PageRightsFilter.Right>
Enum Constant and Description |
---|
ALLOWED
Permits the operation if the default permission checks of the WGAPI also allow it
|
ALLOWED_SKIP_DEFAULT_CHECKS
Permits the operation and also skips all default checks for permission that the WGAPI normally performs,
so the user is effectively allowed.
|
DENIED
Denies the operation
|
Modifier and Type | Method and Description |
---|---|
static PageRightsFilter.Right |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PageRightsFilter.Right[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageRightsFilter.Right ALLOWED_SKIP_DEFAULT_CHECKS
public static final PageRightsFilter.Right ALLOWED
public static final PageRightsFilter.Right DENIED
public static PageRightsFilter.Right[] values()
for (PageRightsFilter.Right c : PageRightsFilter.Right.values()) System.out.println(c);
public static PageRightsFilter.Right valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null