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

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