public static enum ServletSecurity.EmptyRoleSemantic extends java.lang.Enum<ServletSecurity.EmptyRoleSemantic>
Enum Constant | Description |
---|---|
DENY |
Access MUST be denied, regardless of authentication state or identity
|
PERMIT |
Access MUST be permitted, regardless of authentication state or
identity
|
Modifier and Type | Method | Description |
---|---|---|
static ServletSecurity.EmptyRoleSemantic |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static ServletSecurity.EmptyRoleSemantic[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServletSecurity.EmptyRoleSemantic PERMIT
public static final ServletSecurity.EmptyRoleSemantic DENY
public static ServletSecurity.EmptyRoleSemantic[] values()
for (ServletSecurity.EmptyRoleSemantic c : ServletSecurity.EmptyRoleSemantic.values()) System.out.println(c);
public static ServletSecurity.EmptyRoleSemantic 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 nullCopyright © 2000-2016 The Apache Software Foundation. All Rights Reserved.