net.officefloor.tutorial.jwthttpserver.JwtRoles 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 java.util.Arrays;
import net.officefloor.plugin.section.clazz.Parameter;
import net.officefloor.web.jwt.role.JwtRoleCollector;
/**
* Provides translation of {@link Claims} to roles.
*
* @author Daniel Sagenschneider
*/
public class JwtRoles {
public void retrieveRoles(@Parameter JwtRoleCollector collector) {
collector.setRoles(Arrays.asList(collector.getClaims().getRoles()));
}
}