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

cz.mmsparams.api.constants.HttpConstants Maven / Gradle / Ivy

The newest version!
package cz.mmsparams.api.constants;

public class HttpConstants
{
    public static final String AUTHORIZATION = "Authorization";
    public static final String TOKEN_PREFIX = "Bearer ";
    public static final String TOKEN_TYPE = "JWT";

    private HttpConstants()
    {
    }

    public static String getAuthHeaderValue(String token)
    {
        return TOKEN_PREFIX + token;
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy