Examples of IStatusReporter


Examples of org.vfny.geoserver.control.IStatusReporter

     * @param args
     */
    public static void main(String[] args) {
        ApplicationContext context = new FileSystemXmlApplicationContext(
                "src/test/java/spring.xml");
        IStatusReporter controller = (IStatusReporter) context.getBean(
                "statusReporter");
       
        List reports = controller.getStatusReports();
       
        for (int i = 0; i < reports.size(); i++) {
          IStatusReport report = (IStatusReport) reports.get(i);
          System.out.println("Module Name: " + report.getModuleName());
          System.out.println("Status: " +report.getStatus());
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.