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

se.uhr.simone.core.boundary.RootResource Maven / Gradle / Ivy

package se.uhr.simone.core.boundary;

import javax.inject.Inject;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.core.Response;

import se.uhr.simone.core.boundary.representation.ResourcesRepresentation;

@Path("/")
public class RootResource {

	@Inject
	private ResourcesRepresentation root;

	@GET
	public Response getRoot() {
		return Response.ok(root).build();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy