Examples of XlatGroupVO


Examples of net.naijatek.myalumni.modules.common.domain.XlatGroupVO

    }   
   
    public void listLookupCodesHelper(HttpServletRequest request, ActionForm form) throws Exception {
        logger.debug("in listLookupCodesHelper...");
        SystemGroupForm groupForm = (SystemGroupForm)form;
        XlatGroupVO group = xlatGroupService.findById(groupForm.getLookupGroupId());
        group.setDetails(xlatService.getGroupDetails(groupForm.getLookupGroupId()));
        setRequestObject(request, BaseConstants.LIST_OF_CODES_FROM_GROUP, group);
    }   
View Full Code Here

Examples of net.naijatek.myalumni.modules.common.domain.XlatGroupVO

      XlatDetailVO detail, pinstance;
        //TODO help: what is this doing?
      for(Iterator i=items.iterator(); i.hasNext();){
        detail = (XlatDetailVO) i.next();
        pinstance = (XlatDetailVO) getHibernateTemplate().load(XlatDetailVO.class, detail.getLookupCodeId());
        pinstance.setGroup(new XlatGroupVO(groupId));
                pinstance.setLastModification(BaseConstants.UPDATED);
                pinstance.setLastModifiedDate(new Date());
        //TODO: what are we doing with the userId??????
        getHibernateTemplate().update(pinstance);
      }
View Full Code Here

Examples of net.naijatek.myalumni.modules.common.domain.XlatGroupVO

   
    public void updateXlatDetail(String userName, String groupId, String lookupCodeId, String status, String label)
        throws MyAlumniException{
        XlatDetailVO detail ;
        detail = (XlatDetailVO) getHibernateTemplate().load(XlatDetailVO.class, lookupCodeId);
        detail.setGroup(new XlatGroupVO(groupId));
        detail.setStatus(status);
        detail.setLastModifiedBy(userName);
        detail.setLabel(label);
        update(detail);
    }
View Full Code Here

Examples of net.naijatek.myalumni.modules.common.domain.XlatGroupVO

        detail.setLabel(label);
        update(detail);
    }
   
    public void addXlatDetail(XlatDetailVO detail) {
      detail.setGroup(new XlatGroupVO(detail.getLookupGroupId()));
      add(detail);
      //old working version, see how new plays out
//        XlatGroupVO group = (XlatGroupVO) getHibernateTemplate().load(XlatGroupVO.class, detail.getLookupGroupId());
//        detail.setOrganization(new OrganizationVO(detail.getOrganizationId()));
//        detail.setLastModification(BaseConstants.ADDED);
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.