11 lines
229 B
Java
11 lines
229 B
Java
package restx.demo;
|
|
|
|
/**
|
|
* A list of roles for the application.
|
|
*
|
|
* We don't use an enum here because it must be used inside an annotation.
|
|
*/
|
|
public final class Roles {
|
|
public static final String HELLO_ROLE = "hello";
|
|
}
|