Package org.apache.camel.example.model

Examples of org.apache.camel.example.model.Report


    public Report createReport() throws Exception {
        int counter = ++count;

        // Create a Report object
        Report report = new Report();
        report.setId(counter);
        report.setTitle("Report Title: " + counter);
        report.setContent("This is a dummy report");

        // Add the report to the Body
        return report;
    }
View Full Code Here


    public Report createReport() throws Exception {

        int counter = ++count;

        // Create a Report object
        Report report = new Report();
        report.setId(counter);
        report.setTitle("Report Title : " + counter);
        report.setContent("This is a dummy report");

        // Add the report to the Body
        return report;
    }
View Full Code Here

TOP

Related Classes of org.apache.camel.example.model.Report

Copyright © 2018 www.massapicom. 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.