コード例 #1
0
 /** Handles GET requests for the data supporting specific Locations. */
 @GET
 @Produces(MediaType.APPLICATION_JSON)
 public String getLocation(@QueryParam("id") Integer locationId) {
   return locationService.getLocation(locationId);
 }