Package com.lohv.aflac.report

Examples of com.lohv.aflac.report.GenerateStatusReport


    String team=(String) request.getParameter("team");
   
    String fileName=team+" Status Report.xls";
    response.setContentType("application/vnd.ms-excel");
    response.setHeader("Content-Disposition","attachment; filename="+fileName);
    new GenerateStatusReport(team).run(response.getOutputStream());
  }
View Full Code Here

TOP

Related Classes of com.lohv.aflac.report.GenerateStatusReport

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.