net.officefloor.tutorial.jwthttpserver.Identity 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 Identity.
*
* @author Daniel Sagenschneider
*/
@Data
@RequiredArgsConstructor
@AllArgsConstructor
public class Identity {
private String id;
}