Class ApplicationStatusRestService


  • @Component
    @Path("perspectivepoller")
    @Transactional
    public class ApplicationStatusRestService
    extends Object
    • Constructor Detail

      • ApplicationStatusRestService

        public ApplicationStatusRestService()
    • Method Detail

      • applicationStatus

        @GET
        @Path("{applicationId}")
        @Produces({"application/json","application/xml"})
        public javax.ws.rs.core.Response applicationStatus​(@PathParam("applicationId")
                                                           Integer applicationId,
                                                           @QueryParam("start")
                                                           Long start,
                                                           @QueryParam("end")
                                                           Long end)
      • applicationServiceStatus

        @GET
        @Path("{applicationId}/{monitoredServiceId}")
        @Produces({"application/json","application/xml"})
        public javax.ws.rs.core.Response applicationServiceStatus​(@PathParam("applicationId")
                                                                  Integer applicationId,
                                                                  @PathParam("monitoredServiceId")
                                                                  Integer monitoredServiceId,
                                                                  @QueryParam("start")
                                                                  Long start,
                                                                  @QueryParam("end")
                                                                  Long end)