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

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

There is a newer version: 3.17.0
Show newest version
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()));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy