cz.mmsparams.api.constants.HttpConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of MmsParamsAPI Show documentation
Show all versions of MmsParamsAPI Show documentation
Common library for MmsParams system
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