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
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;
}