
com.atlassian.asap.api.Jwt Maven / Gradle / Ivy
package com.atlassian.asap.api;
/**
* An ASAP JSON Web Token.
*
* @see JSON Web Token
* @see ASAP Authentication
*/
public interface Jwt
{
/**
* @return the header of the token.
*/
JwsHeader getHeader();
/**
* @return the claims contained in the token payload.
*/
JwtClaims getClaims();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy