|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<AccessLevel>
com.ibm.wsspi.security.authorization.saf.AccessLevel
public enum AccessLevel
SAF access level values. These values map to the ATTR= option on RACROUTE requests.
Enum Constant Summary | |
---|---|
ALTER
ALTER access. |
|
CONTROL
CONTROL access. |
|
NO_ACCESS
No access. |
|
READ
READ access. |
|
UPDATE
UPDATE access. |
Field Summary | |
---|---|
java.lang.String |
name
|
int |
value
|
Method Summary | |
---|---|
static AccessLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static AccessLevel[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final AccessLevel NO_ACCESS
public static final AccessLevel READ
public static final AccessLevel UPDATE
public static final AccessLevel CONTROL
public static final AccessLevel ALTER
Field Detail |
---|
public final java.lang.String name
public final int value
Method Detail |
---|
public static AccessLevel[] values()
for (AccessLevel c : AccessLevel.values()) System.out.println(c);
public static AccessLevel 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |