コード例 #1
0
ファイル: VehicleWS.java プロジェクト: CodaAzzurra/Powertrain
 @GET
 @Path("/getvehiclelocation/{vehicle}")
 @Produces(MediaType.APPLICATION_JSON)
 public Response getVehicleLocation(@PathParam("vehicle") String vehicle) {
   Location result = service.getVehicleLocation(vehicle);
   return Response.status(201).entity(result).build();
 }