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

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

There is a newer version: 3.17.0
Show newest version
package net.officefloor.tutorial.jwthttpserver;

import java.io.IOException;

import net.officefloor.server.http.ServerHttpConnection;
import net.officefloor.web.security.HttpAccess;

/**
 * Secured resource.
 * 
 * @author Daniel Sagenschneider
 */
public class SecuredResource {

	@HttpAccess(ifRole = "tutorial")
	public void secure(ServerHttpConnection connection) throws IOException {
		connection.getResponse().getEntityWriter().write("Hello JWT secured World");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy