Skip to content

Instantly share code, notes, and snippets.

@dmi3coder
Created May 12, 2020 11:09
Show Gist options
  • Save dmi3coder/174cd4a3111c9b7239d3747dea21e5ab to your computer and use it in GitHub Desktop.
Save dmi3coder/174cd4a3111c9b7239d3747dea21e5ab to your computer and use it in GitHub Desktop.
Static Roles class for Quarkus JWT Example
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