Package com.centraview.activity

Source Code of com.centraview.activity.ResourceActivityHandler

/*
* $RCSfile: ResourceActivityHandler.java,v $    $Revision: 1.2 $  $Date: 2005/09/07 21:57:04 $ - $Author: mcallist $
*
* The contents of this file are subject to the Open Software License
* Version 2.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.centraview.com/opensource/license.html
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
* License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is: CentraView Open Source.
*
* The developer of the Original Code is CentraView.  Portions of the
* Original Code created by CentraView are Copyright (c) 2004 CentraView,
* LLC; All Rights Reserved.  The terms "CentraView" and the CentraView
* logos are trademarks and service marks of CentraView, LLC.
*/

package com.centraview.activity;

import java.util.Vector;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.log4j.Logger;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;

import com.centraview.common.CVUtility;
import com.centraview.common.DDNameValue;
import com.centraview.common.GlobalMasterLists;
import com.centraview.settings.Settings;

public class ResourceActivityHandler extends org.apache.struts.action.Action {
  private static Logger logger = Logger.getLogger(ResourceActivityHandler.class);
  public static final String GLOBAL_FORWARD_failure = ".view.error";
  private static final String FORWARD_resource = ".view.activities.resources";
  private static String FORWARD_final = GLOBAL_FORWARD_failure;

  public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request,
      HttpServletResponse response) throws Exception
  {
    try {
      String dataSource = Settings.getInstance().getSiteInfo(
          CVUtility.getHostName(super.getServlet().getServletContext())).getDataSource();

      // populate form bean for previous sub-activity
      PopulateForm populateForm = new PopulateForm();
      // set the form elements
      populateForm.setForm(request, form);
      // set form with respect to new opening page
      form = populateForm.getForm(request, form, ConstantKeys.RESOURCE);

      if (request.getParameter(ConstantKeys.TYPEOFACTIVITY).equals(ConstantKeys.APPOINTMENT)) {
        request.setAttribute("actionName", "title.contact.appointment");
      } else if (request.getParameter(ConstantKeys.TYPEOFACTIVITY).equals(ConstantKeys.CALL)) {
        request.setAttribute("actionName", "title.contact.call");
      } else if (request.getParameter(ConstantKeys.TYPEOFACTIVITY).equals(ConstantKeys.MEETING)) {
        request.setAttribute("actionName", "title.contact.meeting");
      } else if (request.getParameter(ConstantKeys.TYPEOFACTIVITY).equals(ConstantKeys.NEXTACTION)) {
        request.setAttribute("actionName", "title.contact.nextaction");
      } else if (request.getParameter(ConstantKeys.TYPEOFACTIVITY).equals(ConstantKeys.TASK)) {
        request.setAttribute("actionName", "title.contact.task");
      } else if (request.getParameter(ConstantKeys.TYPEOFACTIVITY).equals(ConstantKeys.TODO)) {
        request.setAttribute("actionName", "title.contact.todo");
      }

      GlobalMasterLists grl = GlobalMasterLists.getGlobalMasterLists(dataSource);
      Vector resourceVec = grl.getAllResources();
      Vector resourceSelected = new Vector();

      if (((ActivityForm)form).getActivityResourcevector() != null) {
        resourceSelected = ((ActivityForm)form).getActivityResourcevector();
      }

      int sizeOfResourceList = resourceVec.size();
      int sizeOfResourceSelected = resourceSelected.size();
      int i = 0;
      int j = 0;
      String idOfResourceList = "";
      String idOfResourceSelected = "";
      DDNameValue ddResourceListInfo = null;
      DDNameValue ddResourceSelectedInfo = null;
      boolean removed = false;

      while (i < sizeOfResourceList) {
        removed = false;
        ddResourceListInfo = (DDNameValue)resourceVec.get(i);
        idOfResourceList = ddResourceListInfo.getStrid();

        while (j < sizeOfResourceSelected) {
          ddResourceSelectedInfo = (DDNameValue)resourceSelected.get(j);
          idOfResourceSelected = ddResourceSelectedInfo.getStrid();

          if (idOfResourceList.equals(idOfResourceSelected)) {
            resourceVec.remove(i);
            removed = true;
            sizeOfResourceList--;
            break;
          }
          j++;
          ddResourceSelectedInfo = null;
        }
        j = 0;

        if (!removed) {
          i++;
        }
        ddResourceListInfo = null;
        removed = false;
      }

      ((ActivityForm)form).setActivityResourcevector(resourceSelected);
      request.setAttribute("resourceVec", resourceVec);
      request.setAttribute(ConstantKeys.TYPEOFSUBACTIVITY, ConstantKeys.RESOURCE);
      request.setAttribute(ConstantKeys.TYPEOFACTIVITY, request
          .getParameter(ConstantKeys.TYPEOFACTIVITY));
      request.setAttribute(ConstantKeys.TYPEOFOPERATION, request
          .getParameter(ConstantKeys.TYPEOFOPERATION));
      FORWARD_final = FORWARD_resource;
    } catch (Exception e) {
      logger.error("[execute]: Exception", e);
      FORWARD_final = GLOBAL_FORWARD_failure;
    }
    return (mapping.findForward(FORWARD_final));
  }

}
TOP

Related Classes of com.centraview.activity.ResourceActivityHandler

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.