@GET
 @Produces(MediaType.APPLICATION_XML)
 @Path("/{gadgetId}/content")
 public GadgetDataResource getGadgetDataContent(
     @PathParam("gadgetId") String gadgetId, @Context UriInfo uriInfo) {
   GadgetRepositoryHandler handler = new GadgetRepositoryHandler(uriInfo);
   return handler.getGadgetData(gadgetId);
 }
 @GET
 @Produces(MediaType.APPLICATION_XML)
 public GadgetRepositoryResource getGadgetRepositoryResource(@Context UriInfo uriInfo) {
   GadgetRepositoryHandler handler = new GadgetRepositoryHandler(uriInfo);
   return handler.getGadgets();
 }