![JAR search and dependency download from the Maven repository](/logo.png)
net.officefloor.tutorial.jwthttpserver.Claims Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JwtHttpServer Show documentation
Show all versions of JwtHttpServer Show documentation
Tutorial of implementing JWT
The newest version!
package net.officefloor.tutorial.jwthttpserver;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.RequiredArgsConstructor;
/**
* JWT claims.
*
* @author Daniel Sagenschneider
*/
@Data
@RequiredArgsConstructor
@AllArgsConstructor
public class Claims {
private String id;
private String[] roles;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy