Class XMLResource


  • @Path("/")
    @Produces({"application/json","application/xml"})
    public class XMLResource
    extends Object
    Responsible for generating a JSON and XML summary of the Monitor
    Since:
    2.0.0
    • Constructor Detail

      • XMLResource

        public XMLResource()
    • Method Detail

      • getInformation

        public SummaryInformation getInformation()
        Generates summary of the Monitor
        Returns:
        SummaryInformation object
      • getXMLInformation

        @GET
        @Path("xml")
        @Produces("application/xml")
        public SummaryInformation getXMLInformation()
      • getJSONInformation

        @GET
        @Path("json")
        @Produces("application/json")
        public SummaryInformation getJSONInformation()