Examples of MuninReport


Examples of com.rupertjones.globalcron.server.web.munin.MuninReport

        report = getContext().getRequest().getParameter("t");
    }

    @DefaultHandler
    public Resolution view() {
        MuninReport muninReport = null;
        if ("executions".equals(report)) {
            muninReport = executionsReport;
        } else {
            muninReport = new NothingReport();
        }

        if ("config".equals(action)) {
            output = muninReport.getConfig().output();
        } else {
            output = muninReport.getResults().output();
        }

        return new ForwardResolution(STATISTICS_JSP);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.