Enum Role
- java.lang.Object
-
- java.lang.Enum<Role>
-
- ca.corefacility.bioinformatics.irida.model.user.Role
-
-
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 roleROLE_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.
-
-
-
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 namejava.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 interfaceorg.springframework.security.core.GrantedAuthority
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<Role>
-
-