com.auth0.jwt.impl.PayloadClaimsHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-jwt Show documentation
Show all versions of java-jwt Show documentation
Java implementation of JSON Web Token (JWT)
The newest version!
package com.auth0.jwt.impl;
import java.util.Map;
/**
* Holds the payload claims when serializing a JWT.
*/
public final class PayloadClaimsHolder extends ClaimsHolder {
public PayloadClaimsHolder(Map claims) {
super(claims);
}
}