Package com.centraview.report.valueobject

Examples of com.centraview.report.valueobject.SelectVO


      UserObject userObject = (UserObject)session.getAttribute("userobject");
      int individualId = userObject.getIndividualID();
      String dataSource = Settings.getInstance().getSiteInfo(CVUtility.getHostName(super.getServlet().getServletContext())).getDataSource();
      DynaActionForm adhocReportForm = (DynaActionForm)actionForm;

      SelectVO selects = new SelectVO();
      ReportFacade remote = getReportFacade();
      // Get the table list from the reportFacade
      // The table list is an ArrayList of TheTable objects, which contain
      // an ID an table name and the Display name.
      selects = remote.getAdHocPageData(moduleId);
View Full Code Here


  private void setPageData(HttpServletRequest request, int moduleId)
  {
    String dataSource = Settings.getInstance().getSiteInfo(CVUtility.getHostName(super.getServlet().getServletContext())).getDataSource();
    try {
      ReportVO reportVO = new ReportVO();
      SelectVO selects = new SelectVO();
      ReportFacade remote = getReportFacade();
      selects = remote.getAdHocPageData(moduleId);
      reportVO.setSelect(selects);
      request.setAttribute("pagedata", reportVO);
    } catch (Exception e) {
View Full Code Here

   * @param moduleId int
   * @return SelectVO
   */
  public SelectVO getAdHocPageData(int moduleId)
  {
    SelectVO selects = new SelectVO();
    try {
      selects.setTopTables(getTables(moduleId));
      return selects;
    } catch (Exception e) {
      throw new EJBException(e);
    }
  }
View Full Code Here

TOP

Related Classes of com.centraview.report.valueobject.SelectVO

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.