JBoss.orgCommunity Documentation

Create a REST service

You can start creating GetEditedDocumentRESTService that implements from the ResourceContainer interface as follows:



@Path("/presentation/document/edit/")
public class GetEditedDocumentRESTService implements ResourceContainer {
    @Path("/{repository}/")
        @GET
        public Response getLastEditedDoc(@PathParam("repository") String repository,
           @QueryParam("showItems") String showItems) throws Exception {
           ........
        }
}
Parameters Definition
@Path("/presentation/document/edit/") Specify the URI path which a resource or class method will serve requests for.
@PathParam("repository") Bind the value repository of a URI parameter or a path segment containing the template parameter to a resource method parameter, resource class field, or resource class bean property.
@QueryParam("showItems") Bind the value showItems of a HTTP query parameter to a resource method parameter, resource class field, or resource class bean property.