All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.officefloor.tutorial.jwthttpserver.Claims Maven / Gradle / Ivy

There is a newer version: 3.17.0
Show 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 - 2024 Weber Informatics LLC | Privacy Policy