Enum Class GlobalRole

java.lang.Object
java.lang.Enum<GlobalRole>
google.registry.model.console.GlobalRole
All Implemented Interfaces:
Serializable, Comparable<GlobalRole>, Constable

public enum GlobalRole extends Enum<GlobalRole>
Roles for registry employees that apply across all registrars.
  • Enum Constant Details

    • 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 Details

    • values

      public static GlobalRole[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static GlobalRole valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • hasPermission

      public boolean hasPermission(ConsolePermission permission)