package auth.constant;
/**
* @author fdse
*/
public class AuthConstant {
private AuthConstant() {
throw new IllegalStateException("Utility class");
}
public static final String ROLE_USER = "ROLE_USER";
public static final String ROLE_ADMIN = "ROLE_ADMIN";
}