Files
spring-boot-rest/restx-demo/src/main/java/restx/demo/Roles.java
2018-10-28 23:47:00 +05:30

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";
}