Package er.jrexample.controllers

Examples of er.jrexample.controllers.FileTaskDownloadController


   
    // Push the task into the long response page
    nextPage.setTask(reportTask);
   
    // Controller for handling the Callable result in the long response page
    FileTaskDownloadController nextPageController = new FileTaskDownloadController();
   
    // Hyperlink text on the "Your file is downloaded page" to get back here
    nextPageController.setReturnLinkText("Reports Menu");
   
    // The filename for the download
    nextPageController.setDownloadFileNameForClient("StudioRevenueReport.pdf");
   
    nextPage.setNextPageForResultController(nextPageController);
   
    return nextPage;
   
View Full Code Here

TOP

Related Classes of er.jrexample.controllers.FileTaskDownloadController

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.