Package google.registry.model.console
Enum GlobalRole
- java.lang.Object
-
- java.lang.Enum<GlobalRole>
-
- google.registry.model.console.GlobalRole
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GlobalRole>
public enum GlobalRole extends java.lang.Enum<GlobalRole>
Roles for registry employees that apply across all registrars.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FTE
The user is a registry full-time employee.NONE
The user has no global role, i.e.SUPPORT_AGENT
The user is a registry support agent.SUPPORT_LEAD
The user is a registry support lead.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasPermission(ConsolePermission permission)
static GlobalRole
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GlobalRole[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final GlobalRole NONE
The user has no global role, i.e. they're a registrar partner.
-
SUPPORT_AGENT
public static final GlobalRole SUPPORT_AGENT
The user is a registry support agent.
-
SUPPORT_LEAD
public static final GlobalRole SUPPORT_LEAD
The user is a registry support lead.
-
FTE
public static final GlobalRole FTE
The user is a registry full-time employee.
-
-
Method Detail
-
values
public static GlobalRole[] 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 (GlobalRole c : GlobalRole.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GlobalRole 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
-
hasPermission
public boolean hasPermission(ConsolePermission permission)
-
-