Enum Role

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Role>, org.springframework.security.core.GrantedAuthority

    public enum Role
    extends java.lang.Enum<Role>
    implements org.springframework.security.core.GrantedAuthority
    Roles for authorization in the application.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ROLE_ADMIN
      Constant reference for administrative role.
      ROLE_ANONYMOUS
      Constant reference for anonymous role.
      ROLE_MANAGER
      Constant reference for the manager role
      ROLE_SEQUENCER
      Constant reference for the sequencer role.
      ROLE_TECHNICIAN
      Constant reference for technician role.
      ROLE_USER
      Constant reference for user role.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getAuthority()  
      java.lang.String getName()  
      void setName​(java.lang.String name)  
      java.lang.String toString()  
      static Role valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static Role[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • ROLE_ANONYMOUS

        public static final Role ROLE_ANONYMOUS
        Constant reference for anonymous role.
      • ROLE_ADMIN

        public static final Role ROLE_ADMIN
        Constant reference for administrative role.
      • ROLE_USER

        public static final Role ROLE_USER
        Constant reference for user role.
      • ROLE_MANAGER

        public static final Role ROLE_MANAGER
        Constant reference for the manager role
      • ROLE_SEQUENCER

        public static final Role ROLE_SEQUENCER
        Constant reference for the sequencer role.
      • ROLE_TECHNICIAN

        public static final Role ROLE_TECHNICIAN
        Constant reference for technician role.
    • Method Detail

      • values

        public static 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 (Role c : 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 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 name
        java.lang.NullPointerException - if the argument is null
      • getName

        public java.lang.String getName()
      • setName

        public void setName​(java.lang.String name)
      • getAuthority

        public java.lang.String getAuthority()
        Specified by:
        getAuthority in interface org.springframework.security.core.GrantedAuthority
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<Role>