Package org.jallinone.system.customizations.server

Source Code of org.jallinone.system.customizations.server.LoadReportFileNamesAction

package org.jallinone.system.customizations.server;

import org.openswing.swing.server.*;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.util.*;
import org.openswing.swing.message.receive.java.*;
import java.sql.*;
import org.openswing.swing.logger.server.Logger;
import org.jallinone.system.server.JAIOUserSessionParameters;
import java.math.BigDecimal;
import org.openswing.swing.message.send.java.GridParams;
import org.jallinone.system.customizations.java.ReportVO;
import org.jallinone.commons.java.ApplicationConsts;
import org.openswing.swing.message.receive.java.VOListResponse;
import org.jallinone.system.customizations.java.ReportFileNameVO;
import org.jallinone.events.server.EventsManager;
import org.jallinone.events.server.GenericEvent;


/**
* <p>Title: JAllInOne ERP/CRM application</p>
* <p>Description: Action class used to retrieve customized reports from SYS15 table.</p>
* <p>Copyright: Copyright (C) 2006 Mauro Carniel</p>
*
* <p> This file is part of JAllInOne ERP/CRM application.
* This application is free software; you can redistribute it and/or
* modify it under the terms of the (LGPL) Lesser General Public
* License as published by the Free Software Foundation;
*
*                GNU LESSER GENERAL PUBLIC LICENSE
*                 Version 2.1, February 1999
*
* This application is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*       The author may be contacted at:
*           maurocarniel@tin.it</p>
*
* @author Mauro Carniel
* @version 1.0
*/
public class LoadReportFileNamesAction implements Action {


  public LoadReportFileNamesAction() {
  }

  /**
   * @return request name
   */
  public final String getRequestName() {
    return "loadReportFileNames";
  }


  /**
   * Business logic to execute.
   */
  public final Response executeCommand(Object inputPar,UserSessionParameters userSessionPars,HttpServletRequest request, HttpServletResponse response,HttpSession userSession,ServletContext context) {
    try {
      ArrayList list = new ArrayList();
      String path = this.getClass().getResource("/").getPath().replaceAll("%20"," ");
      String reportsPath = (String)((JAIOUserSessionParameters)userSessionPars).getAppParams().get(ApplicationConsts.REPORT_PATH);
      if (new File(reportsPath).isAbsolute())
        path = reportsPath;
      else
        path += reportsPath;
      path = path.replace('\\','/');
      if (!path.endsWith("/"))
        path += "/";

      File[] files = new File(path).listFiles(new FileFilter() {
        public boolean accept(File pathname) {
          return pathname.getName().endsWith(".jasper");
        }
      });
      ReportFileNameVO vo = null;
      for(int i=0;i<files.length;i++) {
        vo = new ReportFileNameVO();
        vo.setReportFileName(files[i].getName());
        list.add(vo);
      }

      VOListResponse res = new VOListResponse(list,false,list.size());
      Response answer = res;

      return answer;
    }
    catch (Throwable ex) {
      Logger.error(userSessionPars.getUsername(),this.getClass().getName(),"executeCommand","Error while fetching report files list",ex);
      return new ErrorResponse(ex.getMessage());
    }
  }



}
TOP

Related Classes of org.jallinone.system.customizations.server.LoadReportFileNamesAction

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.