Enum MyDataRole

java.lang.Object
java.lang.Enum<MyDataRole>
de.fraunhofer.iese.mydata.user.MyDataRole
All Implemented Interfaces:
Serializable, Comparable<MyDataRole>

public enum MyDataRole extends Enum<MyDataRole>
Roles for the PMP.
  • Enum Constant Details

    • SOLUTION_DEVELOPER

      public static final MyDataRole SOLUTION_DEVELOPER
    • ADMINISTRATOR

      public static final MyDataRole ADMINISTRATOR
    • SUPER_ADMIN

      public static final MyDataRole SUPER_ADMIN
      Role that is able to manage all affiliations
    • PDP

      public static final MyDataRole PDP
      This role is not stored with user. It' for components, only.
    • PMP

      public static final MyDataRole PMP
    • CLIENT

      public static final MyDataRole CLIENT
    • MASTER_LIBRARY_CLIENT

      public static final MyDataRole MASTER_LIBRARY_CLIENT
    • LIBRARY_CLIENT

      public static final MyDataRole LIBRARY_CLIENT
    • TECH_CLIENT

      public static final MyDataRole TECH_CLIENT
    • USER_CLIENT

      public static final MyDataRole USER_CLIENT
  • Method Details

    • values

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

      public static MyDataRole valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • toSpringRole

      public String toSpringRole()
      To spring role.
      Returns:
      the string
    • toString

      public String toString()
      Overrides:
      toString in class Enum<MyDataRole>