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);
}