private void saveDepts(Team _team, List _deptList) throws PureException { IObjDeptMappingMgr mgr = (IObjDeptMappingMgr) ArkContentHelper.getContentMgrOf(SRMTypes.OBJ_DEPT_MAPPING); ObjDeptMapping dept; for (Iterator iterator = _deptList.iterator(); iterator.hasNext(); ) { dept = (ObjDeptMapping) iterator.next(); dept.setObjId(_team.getId()); mgr.save(dept); } }
private void deleteAllDepts(ArkContent _obj) throws PureException { IObjDeptMappingMgr mgr = (IObjDeptMappingMgr) ArkContentHelper.getContentMgrOf(SRMTypes.OBJ_DEPT_MAPPING); mgr.deleteAllOfObj(_obj.getArkType(), _obj.getId()); }