コード例 #1
0
ファイル: CloudResource.java プロジェクト: Ohba/GetStat.us
 @GET
 @Path("/{cloudName}")
 public Cloud getCloud(@PathParam("cloudName") String cloudName) throws MalformedURLException {
   subjectLog();
   return service.getCloudStatus(cloudName);
 }
コード例 #2
0
ファイル: CloudResource.java プロジェクト: Ohba/GetStat.us
 @GET
 public Response getClouds() throws Exception {
   subjectLog();
   List<Cloud> clouds = service.getClouds();
   return Response.ok().entity(clouds).build();
 }