Package com.centraview.common.helper

Examples of com.centraview.common.helper.CommonHelper


        tableName = "emailfolder";
      }

      CommonHelperHome home = (CommonHelperHome)CVUtility.getHomeObject(
          "com.centraview.common.helper.CommonHelperHome", "CommonHelper");
      CommonHelper remote = home.create();
      remote.setDataSource(dataSource);

      // get the list of folders that represents the full path
      // to the current folder selected. This will be shown at
      // the top of the screen with navigation
      ArrayList fullPathList = remote.getFolderFullPath(folderID.intValue(), tableName);
      emailForm.set("fullPathList", fullPathList);

      ArrayList subfolderList = remote.getSubFolderList(individualID, folderID.intValue(),
          tableName);

      long curFolderId = 0;
      if (request.getParameter("curFolderID") != null) {
        curFolderId = Long.parseLong(request.getParameter("curFolderID"));
View Full Code Here


      Vector locationsVector = accHelper.getLocations();
      this.put("AccountingLocations", locationsVector);

      CommonHelperHome commonHelperHome = (CommonHelperHome)CVUtility.getHomeObject(
          "com.centraview.common.helper.CommonHelperHome", "CommonHelper");
      CommonHelper commonRemote = commonHelperHome.create();
      commonRemote.setDataSource(this.dataSource);

      allSource = commonRemote.getAllSource();
      this.put("AllSource", allSource);

      HashMap moduleList = commonRemote.getModuleList();
      this.put("moduleList", moduleList);

      setSupportLists();
      setSaleLists();
View Full Code Here

    if(actionType != null && actionType.equals("EMAIL")){
      tableName="emailfolder";
    }

      CommonHelperHome home = (CommonHelperHome)CVUtility.getHomeObject("com.centraview.common.helper.CommonHelperHome", "CommonHelper");
      CommonHelper remote = (CommonHelper)home.create();
      remote.setDataSource(dataSource);

      // get the list of folders that represents the full path
      // to the current folder selected. This will be shown at
      // the top of the screen with navigation
      ArrayList fullPathList = remote.getFolderFullPath(folderID.intValue(),tableName);
      emailForm.set("fullPathList", fullPathList);

      ArrayList subfolderList = remote.getSubFolderList(individualID, folderID.intValue(),tableName);

    long curFolderId = 0;
    if(request.getParameter("curFolderID") != null){
    curFolderId = Long.parseLong(request.getParameter("curFolderID"));
    }
View Full Code Here

TOP

Related Classes of com.centraview.common.helper.CommonHelper

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.