public ActionForward list( ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { CommonLogger.logDebug(log, "In PersonAction:list() "); // If user pressed 'Cancel' button, // return to home page if (isCancelled(request)) { return mapping.findForward("home"); } try { PersonManager clientHandler = new PersonManager(); CommonLogger.logDebug( log, "The person type is " + request.getParameter(BSIConstants.PERSON_TYPE)); List personsList = clientHandler.listPersons(request.getParameter(BSIConstants.PERSON_TYPE)); request.getSession().setAttribute(BSIConstants.OBJECTS_LIST, personsList); /* * * List supplierList = clientHandler.listSuppliers(); * * request.getSession().setAttribute(BSIConstants.SUPPLIER_LIST, * supplierList); * request.getSession().setAttribute(BSIConstants.SORT_LIST_NAME * ,BSIConstants.SUPPLIER_LIST); * * * SortParams sortParams = new SortParams(); * sortParams.setActionType("goto"); sortParams.setSortColumn("Id"); * sortParams.setSortOrder("asc"); sortParams.setRowsPerPage(3); * sortParams.setGoToPage(2); * * request.getSession().setAttribute(BSIConstants.SORT_PARAMS,sortParams * ); */ } catch (BSIException ex1) { ActionErrors errors = new ActionErrors(); CommonLogger.logDebug( log, "In PersonAction:list() \n exception occured. Exception message is " + ex1.getMessage()); errors.add( ActionErrors.GLOBAL_MESSAGE, new ActionMessage(ex1.getErrorCode(), ex1.getMessage())); saveErrors(request, errors); } catch (Exception ex2) { throw ex2; } // Forward to result page return mapping.findForward("success"); }
/** * createPerson * * <p>This method creates only the Person. * * @param mapping ActionMapping * @param form ActionForm * @param request HttpServletRequest * @param response HttpServletResponse * @throws Exception * @return ActionForward */ public ActionForward createPerson( ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { CommonLogger.logDebug(log, "In PersonAction:createPerson() "); // If user pressed 'Cancel' button, // return to home page if (isCancelled(request)) { return mapping.findForward("home"); } Object obj = null; // ActionRedirect redirect = null; try { PersonManager clientHandler = new PersonManager(); obj = clientHandler.createPerson(form); String personType = ((PersonForm) form).getPersonType(); ActionMessages msgs = new ActionMessages(); if (personType != null && personType.equalsIgnoreCase(BSIConstants.SUPPLIER)) { msgs.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("Supplier.creation.succesfull")); } else if (personType != null && personType.equalsIgnoreCase(BSIConstants.REGION_ADMIN)) { msgs.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("RegAdmin.create.succesfully")); } saveMessages(request, msgs); /* HttpSession session = request.getSession(true); session.setAttribute(BSIConstants.CREATED_ENTITIY, obj); */ // dynaForm.getMap().clear(); } catch (BSIException ex1) { ActionErrors errors = new ActionErrors(); CommonLogger.logDebug( log, "In PersonAction:createPerson() \n exception occured. Exception message is " + ex1.getMessage()); errors.add( ActionErrors.GLOBAL_MESSAGE, new ActionMessage(ex1.getErrorCode(), ex1.getMessage())); saveErrors(request, errors); } catch (Exception ex2) { throw ex2; } finally { request.setAttribute(BSIConstants.ACTION_TYPE, BSIConstants.CREATE); request.getSession().setAttribute(BSIConstants.CREATED_ENTITIY, obj); /* redirect = new ActionRedirect(mapping.findForward("success")); redirect.addParameter(BSIConstants.CREATED_ENTITIY, obj); */ } return mapping.findForward("success"); // return redirect; }
public ActionForward getPersonInfo( ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { // If user pressed 'Cancel' button, // return to home page ActionForward forward = null; CommonLogger.logDebug(log, "In PersonAction:getPersonInfo() "); if (isCancelled(request)) { return mapping.findForward("home"); } String personId = request.getParameter(BSIConstants.PERSON_ID); User user = (User) request.getSession().getAttribute(BSIConstants.USER); // String personId = user.getPerson().getId().toString(); CommonLogger.logInfo(log, "Executing the view action for the person id:" + personId); try { PersonManager clientHandler = new PersonManager(); Person personObj = clientHandler.getPerson(personId); CommonLogger.logDebug(log, "Populating the person form"); PersonForm personForm = (PersonForm) form; PropertyUtils.copyProperties(personForm, personObj); CommonLogger.logDebug( log, "After Populating the person form, the name is " + personForm.getName()); String personType = personForm.getPersonType(); if (personType != null && personType.equalsIgnoreCase(BSIConstants.BUYER)) { forward = mapping.findForward("Buyer"); } else if (personType != null && personType.equalsIgnoreCase(BSIConstants.SUPPLIER)) { forward = mapping.findForward("Supplier"); } } catch (BSIException ex1) { ActionErrors errors = new ActionErrors(); CommonLogger.logDebug( log, "In BuyerAction:editPersonalInfo() \n exception occured. Exception message is " + ex1.getMessage()); errors.add( ActionErrors.GLOBAL_MESSAGE, new ActionMessage(ex1.getErrorCode(), ex1.getMessage())); saveErrors(request, errors); } catch (Exception ex2) { throw ex2; } finally { request.setAttribute(BSIConstants.ACTION_TYPE, BSIConstants.EDIT); } return forward; }
public ActionForward updatePersonInfo( ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { CommonLogger.logDebug(log, "In PersonAction:updatePersonInfo() "); // If user pressed 'Cancel' button, // return to home page if (isCancelled(request)) { return mapping.findForward("home"); } // Person personObj = new Person(); // PropertyUtils.copyProperties(personObj, (PersonForm)form); try { PersonManager clientHandler = new PersonManager(); Person oldPersonObj = clientHandler.getPerson(((PersonForm) form).getId().toString()); CommonLogger.logDebug(log, "the retrieved person id is " + oldPersonObj.getId()); PropertyUtils.copyProperties(oldPersonObj, (PersonForm) form); clientHandler.updatePersonInfo(oldPersonObj); ActionMessages msgs = new ActionMessages(); msgs.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("common.update.succesfull")); saveMessages(request, msgs); } catch (BSIException ex1) { ActionErrors errors = new ActionErrors(); CommonLogger.logDebug( log, "In PersonAction:updatePersonInfo() \n exception occured. Exception message is " + ex1.getMessage()); errors.add( ActionErrors.GLOBAL_MESSAGE, new ActionMessage(ex1.getErrorCode(), ex1.getMessage())); saveErrors(request, errors); } catch (Exception ex2) { throw ex2; } finally { request.setAttribute(BSIConstants.ACTION_TYPE, BSIConstants.EDIT); } return mapping.findForward("success"); }
public ActionForward unSubscribeSrvs( ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { CommonLogger.logDebug(log, "In PersonAction:unSubscribeSrvs() "); try { String personId = request.getParameter(BSIConstants.PERSON_ID); String serviceId = request.getParameter(BSIConstants.SERVICE_ID); String personType = request.getParameter(BSIConstants.PERSON_TYPE); CommonLogger.logDebug( log, "The personId is " + personId + ", the service id is " + serviceId + ", person type is " + personType); PersonManager clientHandler = new PersonManager(); clientHandler.unSubscribeService(personId, serviceId, personType); ActionMessages msgs = new ActionMessages(); msgs.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("creation.action.succesfull")); saveMessages(request, msgs); } catch (BSIException ex1) { ActionErrors errors = new ActionErrors(); CommonLogger.logDebug( log, "In SupplierAction:subscribeSrvs() \n exception occured. Exception message is " + ex1.getMessage()); errors.add( ActionErrors.GLOBAL_MESSAGE, new ActionMessage(ex1.getErrorCode(), ex1.getMessage())); saveErrors(request, errors); } catch (Exception ex2) { throw ex2; } return mapping.findForward("success"); }
public ActionForward delete( ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { CommonLogger.logDebug(log, "In PersonAction:delete() "); // If user pressed 'Cancel' button, // return to home page if (isCancelled(request)) { return mapping.findForward("home"); } try { // Get the list of all services available. String personId = request.getParameter(BSIConstants.PERSON_ID); PersonManager personMgr = new PersonManager(); personMgr.deletePerson(new Long(personId)); ActionMessages msgs = new ActionMessages(); msgs.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("creation.action.succesfull")); saveMessages(request, msgs); } catch (BSIException ex1) { ActionErrors errors = new ActionErrors(); CommonLogger.logDebug( log, "In PersonAction:delete() \n exception occured. Exception message is " + ex1.getMessage()); errors.add( ActionErrors.GLOBAL_MESSAGE, new ActionMessage(ex1.getErrorCode(), ex1.getMessage())); saveErrors(request, errors); } catch (Exception ex2) { throw ex2; } return mapping.findForward("success"); }
public ActionForward listPersonsMatchingServiceProperties( ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { CommonLogger.logDebug(log, "In PersonAction.listPersonsMatchingServiceProperties()"); String serviceId = request.getParameter(BSIConstants.SERVICE_ID); String personType = request.getParameter(BSIConstants.PERSON_TYPE); Set personSet = null; List newPersonList = new ArrayList(); CommonLogger.logDebug(log, "The request parameters are, serviceId=" + serviceId); try { // Get the service region SubscribeServiceForm ssform = (SubscribeServiceForm) form; ArrayList locns = ssform.getLocns(); List<Long> regionIds = new ArrayList<Long>(); HashMap locnMap = null; LocationForm locn = null; for (int x = 0; x < locns.size(); x++) { locn = (LocationForm) locns.get(x); regionIds.addAll(locn.getSubscribedRegionIds()); } if (regionIds.size() == 0) throw new Exception("No regions selected"); // LocationManager locMgr = new LocationManager(); // List srvRegnIds = locMgr.getServiceRegions(locnList); // Get the buyer/supplier properties List propertyValueList = null; if ((personType.equalsIgnoreCase(BSIConstants.BUYER)) || (personType.equalsIgnoreCase(BSIConstants.SUPPLIER))) { propertyValueList = ((BuyerPropertiesForm) ssform).getPropertiesValues(); } // PersonManager personMgr = new PersonManager(); personSet = personMgr.getPersonsMatchingServiceProperties( serviceId, regionIds, personType, propertyValueList); // Convert this supplier set to the list if (personSet != null) { Iterator iter = personSet.iterator(); while (iter.hasNext()) { Person person = (Person) iter.next(); CommonLogger.logDebug(log, "The person name is " + person.getName()); newPersonList.add(person); } } CommonLogger.logDebug(log, "The person set contains : " + newPersonList); // request.getSession().setAttribute(BSIConstants.PERSONS_LIST, // suppSet); } catch (BSIException ex1) { ActionErrors errors = new ActionErrors(); CommonLogger.logDebug( log, "In PersonAction:listPersonsForService() \n exception occured. Exception message is " + ex1.getMessage()); errors.add( ActionErrors.GLOBAL_MESSAGE, new ActionMessage(ex1.getErrorCode(), ex1.getMessage())); saveErrors(request, errors); } finally { request.getSession().setAttribute(BSIConstants.OBJECTS_LIST, newPersonList); } return mapping.findForward("success"); }
public ActionForward listSubscribedServices( ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { CommonLogger.logDebug(log, "In PersonAction:listSubscribedServices() "); ActionMessages msgs = new ActionMessages(); Set srvs = null; try { // String personId = request.getParameter(BSIConstants.PERSON_ID); User user = (User) request.getSession().getAttribute(BSIConstants.USER); // String personId = user.getPerson().getId().toString(); String personId = null; if (request.getParameter(BSIConstants.PERSON_ID) != null) { personId = request.getParameter(BSIConstants.PERSON_ID); } else { personId = user.getPerson().getId().toString(); } String personType = request.getParameter(BSIConstants.PERSON_TYPE); CommonLogger.logDebug(log, "The person id is " + personId); PersonManager clientHandler = new PersonManager(); Person personObj = clientHandler.getPerson(personId); // Get the service region for the person // TODO should support multiple service region, each for a service. Long serviceId = null; if (personType != null && personType.equalsIgnoreCase(BSIConstants.BUYER)) { srvs = personObj.getRequestedSevices(); } else if (personType != null && personType.equalsIgnoreCase(BSIConstants.SUPPLIER)) { srvs = personObj.getOfferedServices(); } // srvs = personObj.getServices(); if (log.isDebugEnabled()) { if (srvs != null) { Object[] services = srvs.toArray(); if (services.length > 0) serviceId = ((Service) services[0]).getNodeId(); CommonLogger.logDebug(log, "The service id is " + serviceId); } } } catch (BSIException ex1) { ActionErrors errors = new ActionErrors(); CommonLogger.logDebug( log, "In SupplierAction:subscribeService() \n exception occured. Exception message is " + ex1.getMessage()); errors.add( ActionErrors.GLOBAL_MESSAGE, new ActionMessage(ex1.getErrorCode(), ex1.getMessage())); saveErrors(request, errors); } finally { request.setAttribute(BSIConstants.SUBSCRIBED_SERVICES_LIST, srvs); } return mapping.findForward("success"); }
public ActionForward listBuyersForService( ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { CommonLogger.logDebug(log, "In PersonAction.listBuyersForService()"); String serviceId = request.getParameter(BSIConstants.SERVICE_ID); String ssrId = request.getParameter(BSIConstants.SERVICE_REGION_ID); List buyerList = null; CommonLogger.logDebug( log, "The request parameters are, serviceId=" + serviceId + ",ssrId=" + ssrId); try { // Get the service region SubscribeServiceForm ssform = (SubscribeServiceForm) form; ArrayList locns = ssform.getLocns(); List regionIds = new ArrayList(); HashMap locnMap = null; LocationForm locn = null; for (int x = 0; x < locns.size(); x++) { locn = (LocationForm) locns.get(x); regionIds.add(locn.getSubscribedRegionId()); /* * locnMap = new HashMap(); * locnMap.put("CountryId",locn.getCountryId()); * locnMap.put("StateId",locn.getStateId()); * locnMap.put("LocationId",locn.getLocationId()); * locnList.add(locnMap); */ } if (regionIds.size() == 0) throw new Exception("No regions selected"); // LocationManager locMgr = new LocationManager(); // List srvRegnIds = locMgr.getServiceRegions(locnList); PersonManager personMgr = new PersonManager(); buyerList = personMgr.getBuyersForService(serviceId, regionIds); if (log.isDebugEnabled()) { Iterator iter = buyerList.iterator(); while (iter.hasNext()) { Person person = (Person) iter.next(); CommonLogger.logDebug(log, "The person name is " + person.getName()); } } // request.getSession().setAttribute(BSIConstants.PERSONS_LIST, // buyerSet); } catch (BSIException ex1) { ActionErrors errors = new ActionErrors(); CommonLogger.logDebug( log, "In PersonAction:listBuyersForService() \n exception occured. Exception message is " + ex1.getMessage()); errors.add( ActionErrors.GLOBAL_MESSAGE, new ActionMessage(ex1.getErrorCode(), ex1.getMessage())); saveErrors(request, errors); } finally { request.setAttribute(BSIConstants.PERSONS_LIST, buyerList); } return mapping.findForward("success"); }
public ActionForward subscribeSrvs( ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { CommonLogger.logDebug(log, "In PersonAction:subscribeSrvs() "); try { String personId = request.getParameter(BSIConstants.PERSON_ID); String serviceId = request.getParameter(BSIConstants.SERVICE_ID); String personType = request.getParameter(BSIConstants.PERSON_TYPE); CommonLogger.logDebug( log, "The personId is " + personId + ", the service id is " + serviceId + ",the personType is " + personType); SubscribeServiceForm ssform = (SubscribeServiceForm) form; ArrayList locns = ssform.getLocns(); List regionIds = new ArrayList(); HashMap locnMap = null; LocationForm locn = null; for (int x = 0; x < locns.size(); x++) { locn = (LocationForm) locns.get(x); CommonLogger.logDebug(log, "The regionId1:" + locn.getRegionId1()); CommonLogger.logDebug(log, "The regionId2:" + locn.getRegionId2()); CommonLogger.logDebug(log, "The regionId3:" + locn.getRegionId3()); CommonLogger.logDebug(log, "The regionId4:" + locn.getRegionId4()); CommonLogger.logDebug(log, "The regionId5:" + locn.getRegionId5()); CommonLogger.logDebug(log, "The regionId16" + locn.getRegionId6()); regionIds.add(locn.getSubscribedRegionId()); /* * locnMap = new HashMap(); * locnMap.put("CountryId",locn.getCountryId()); * locnMap.put("StateId",locn.getStateId()); * locnMap.put("LocationId",locn.getLocationId()); * locnList.add(locnMap); */ } if (regionIds.size() == 0) throw new Exception("No regions selected"); // Get the buyer properties form, in case buyer. PersonManager clientHandler = new PersonManager(); List buyerPropList = null; /* if (personType.equalsIgnoreCase(BSIConstants.BUYER)) { */ buyerPropList = ((BuyerPropertiesForm) ssform).getPropertiesValues(); // } clientHandler.updateSubscribedServices( personId, serviceId, regionIds, personType, buyerPropList); // clientHandler.unSubscribeServiceLocation(personId,serviceId,personType); // clientHandler.subscribeService(personId,serviceId,locnList,personType); ActionMessages msgs = new ActionMessages(); msgs.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("creation.action.succesfull")); saveMessages(request, msgs); } catch (BSIException ex1) { ActionErrors errors = new ActionErrors(); CommonLogger.logDebug( log, "In SupplierAction:subscribeSrvs() \n exception occured. Exception message is " + ex1.getMessage()); errors.add( ActionErrors.GLOBAL_MESSAGE, new ActionMessage(ex1.getErrorCode(), ex1.getMessage())); saveErrors(request, errors); } catch (Exception ex2) { throw ex2; } return mapping.findForward("success"); }