Package ome.model.internal
Enum Permissions.Role
- java.lang.Object
-
- java.lang.Enum<Permissions.Role>
-
- ome.model.internal.Permissions.Role
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Permissions.Role>
- Enclosing class:
- Permissions
public static enum Permissions.Role extends java.lang.Enum<Permissions.Role>
enumeration of currently active roles. TheUSER
role is active when the contents ofDetails.getOwner()
equals the current user as determined from the Security system (Server-side only). Similarly, theGROUP
role is active when the contents ofDetails.getGroup()
matches the current group.WORLD
is used for any non-USER, non-GROUP user. For more advanced, ACL, methods takingExperimenter
references can be implemented.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Permissions.Role
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Permissions.Role[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USER
public static final Permissions.Role USER
-
GROUP
public static final Permissions.Role GROUP
-
WORLD
public static final Permissions.Role WORLD
-
-
Method Detail
-
values
public static Permissions.Role[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Permissions.Role c : Permissions.Role.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Permissions.Role valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-