Class ItemsResource
- java.lang.Object
-
- org.glassfish.jersey.examples.linking.resources.ItemsResource
-
-
Constructor Summary
Constructors Constructor Description ItemsResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ItemResourceget(String id)ItemsRepresentationquery(UriInfo info, int offset, int limit)
-
-
-
Method Detail
-
query
@GET public ItemsRepresentation query(@Context UriInfo info, @QueryParam("offset") @DefaultValue("-1") int offset, @DefaultValue("-1") @QueryParam("limit") int limit)
-
get
@Path("{id}") public ItemResource get(@PathParam("id") String id)
-
-