/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package v3RocksRESTServices.Services; import javax.ws.rs.core.Context; import javax.ws.rs.core.UriInfo; import javax.ws.rs.Consumes; import javax.ws.rs.PUT; import javax.ws.rs.Path; import javax.ws.rs.GET; import javax.ws.rs.Produces; /** * REST Webservice * * @author Sebastian */ @Path("helloService") public class HelloServiceResource { @Context private UriInfo context; /** Creates a new instance of HelloServiceResource */ public HelloServiceResource() { } /** * Retrieves representation of an instance of v3RocksRESTServices.Services.HelloServiceResource * @return an instance of java.lang.String */ @GET @Produces("text/plain") public String getText() { //TODO return proper representation object throw new UnsupportedOperationException(); } /** * PUT method for updating or creating an instance of HelloServiceResource * @param content representation for the resource * @return an HTTP response with content of the updated or created resource. */ @PUT @Consumes("text/plain") public void putText(String content) { } }