Created
May 12, 2020 11:09
-
-
Save dmi3coder/174cd4a3111c9b7239d3747dea21e5ab to your computer and use it in GitHub Desktop.
Static Roles class for Quarkus JWT Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package tech.donau.quarkify.security; | |
public final class Roles { | |
private Roles() { } | |
public static final String USER = "User"; | |
public static final String SERVICE = "Service"; | |
public static final String ADMIN = "Admin"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment