package org.pac4j.jwt.profile; import org.pac4j.core.profile.jwt.AbstractJwtProfile; import org.pac4j.core.profile.jwt.JwtClaims; /** * Represents a user profile based on a JWT. * * @author Misagh Moayyed * @since 1.8.2 */ public class JwtProfile extends AbstractJwtProfile { private static final long serialVersionUID = -1688563185891542198L; public String getJwtId() { return (String) getAttribute(JwtClaims.JWT_ID); } }