All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.cosenonjaviste.security.jwt.utils.JwtConstants Maven / Gradle / Ivy

package it.cosenonjaviste.security.jwt.utils;

/**
 * Helper class for centralizing constants
 * 
 * @author acomo
 *
 */
public class JwtConstants {

	/**
	 * Authentication header
	 */
	public static final String AUTH_HEADER = "X-Auth";
	
	/**
	 * User Id claim key
	 */
	public static final String USER_ID = "userId";
	
	/**
	 * Roles claim key
	 */
	public static final String ROLES = "roles";	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy