Examples of ActionForward


Examples of org.apache.struts.action.ActionForward

    {
      ActionErrors allErrors = new ActionErrors();
      allErrors.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("error.freeForm", "You do not have permission to delete one or more of the records you selected."));
      session.setAttribute("listErrorMessage", allErrors);
    }
    ActionForward forward = new ActionForward(request.getParameter("currentPage"), true);
    return forward;
  }
View Full Code Here

Examples of org.apache.struts.action.ActionForward

    }catch(Exception e){
    logger.error("[Exception] SaveContactHandler.Execute Handler ", e);
        e.printStackTrace();
    }
   
   return(new ActionForward(mapping.findForward(forward).getPath() + newIndividualID, true));
  }   // end execute() method
View Full Code Here

Examples of org.apache.struts.action.ActionForward

      preferenceEJB.updateUserPreference(individualId, preferenceVector);
    } catch (Exception e) {
      logger.error("[execute] Exception thrown.", e);
      throw new ServletException(e);
    }
    return(new ActionForward(returnPath.toString(), true));
  }
View Full Code Here

Examples of org.apache.struts.action.ActionForward

    {
      ActionErrors allErrors = new ActionErrors();
      allErrors.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("error.freeForm", "You do not have permission to delete one or more of the records you selected."));
      session.setAttribute("listErrorMessage", allErrors);
    }
    ActionForward forward = new ActionForward(request.getParameter("currentPage"), true);
    return forward;
  }
View Full Code Here

Examples of org.apache.struts.action.ActionForward

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

      HttpSession session = request.getSession();
      int individualId = ((UserObject)session.getAttribute("userobject")).getIndividualID();

      String typeOfSave = "saveclose";

      if (request.getParameter("buttonpress") != null)
      {
        typeOfSave = request.getParameter("buttonpress");
      }

      UserHome uhome = (UserHome)CVUtility.getHomeObject("com.centraview.administration.user.UserHome", "User");
      User uRemote = (User)uhome.create();
      uRemote.setDataSource(dataSource);
      String oldPassword = "", newPassword = "";
      // TODO integrate password change with RememberMe functionallity.
      if (uRemote != null)
      {
        oldPassword = (String)request.getParameter("oldpassword");
        newPassword = (String)request.getParameter("newpassword");
      }

      if (newPassword != null && newPassword.length() != 0)
      {
        try
        {
          uRemote.changePassword(individualId, oldPassword, newPassword);
        } catch (UserException ue) {
          if (ue.getExceptionId() == UserException.COULDNOT_CHANGE_PASSWORD)
          {
            allErrors.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("error.freeForm",
                "Error while updating login information, " + ue.getExceptionDescription()));
            saveErrors(request, allErrors);
          } else {
            ue.printStackTrace();
          }
        } catch (Exception e) {
          e.printStackTrace();
        }
      }
      ContactFacadeHome cfh = (ContactFacadeHome)CVUtility.getHomeObject("com.centraview.contact.contactfacade.ContactFacadeHome", "ContactFacade");
      ContactFacade remote = (ContactFacade)cfh.create();
      remote.setDataSource(dataSource);
      IndividualVO individualVO = new IndividualVOX(form, request, dataSource);

      if (typeOfSave.equals("save"))
      {
        try {
          remote.updateIndividual(individualVO, individualId);
          } catch (Exception e) {
            logger.error("[execute] Exception thrown.", e);
            throw new ServletException(e);
          }
        request.setAttribute("TYPEOFOPERATION", "EDIT");
      }
      forward = new ActionForward(mapping.findForward(FORWARD_save).getPath(), false)
      request.setAttribute("TYPEOFSUBMODULE", AdminConstantKeys.PREFERENCEPAGE);
    } catch (Exception e) {
      logger.error("[execute] Exception thrown.", e);
      throw new ServletException(e);
    }
View Full Code Here

Examples of org.apache.struts.action.ActionForward

      returnPath.append(mapping.findForward("emailList").getPath());
      if (folderId != null && folderId.length() > 0) {
        returnPath.append("?folderID="+folderId);
      }
    }
    return(new ActionForward(returnPath.toString(), true));
  }
View Full Code Here

Examples of org.apache.struts.action.ActionForward

    try
    {
    // 350 ms is probably a good threshhold.
    Thread.sleep(350);
    } catch (InterruptedException e) {}
      return(new ActionForward(returnPath.toString(), true));
  }// end execute() method
View Full Code Here

Examples of org.apache.struts.action.ActionForward

      case 52: forwardName = ".view.reports.timesheet.adhoc"; break;
      default: forwardName = ".view.reports.entities.adhoc"; break;
    }
    String path = mapping.findForward(nextURL).getPath();
    // path is anticipated to be "blah.do?moduleId=" so simply appending moduleId will go where we want.
    ActionForward forward = new ActionForward(forwardName, path+moduleId, true);
    return forward;
  }
View Full Code Here

Examples of org.apache.struts.action.ActionForward

      case 48: forwardName = ".view.reports.inventory.adhoc"; break;
      case 52: forwardName = ".view.reports.timesheet.adhoc"; break;
      default: forwardName = ".view.reports.entities.adhoc"; break;
    }
    String path = actionMapping.findForward(nextURL).getPath();
    ActionForward forward = new ActionForward(forwardName, path, false);
    return forward;
  }
View Full Code Here

Examples of org.apache.struts.action.ActionForward

    StringBuffer returnPath = new StringBuffer(mapping.findForward(forward).getPath());
    if (folderID != null && folderID.intValue() > 0)
    {
      returnPath.append("?folderID="+folderID);
    }
    return(new ActionForward(returnPath.toString(), true));
  }
View Full Code Here
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.