/**
  * @param org2Names
  * @param org2Ids
  * @throws PureException
  */
 private void setOrg2(List org2Names, List org2Ids) throws PureException {
   IOrganizationMgr mgr = (IOrganizationMgr) ArkContentHelper.getContentMgrOf(Organization.class);
   List objs = mgr.findAllByType(SRMConstants.ORG_TYPE.ACADEMY, true);
   for (Iterator iter = objs.iterator(); iter.hasNext(); ) {
     Organization dept = (Organization) iter.next();
     org2Names.add(dept.getName());
     org2Ids.add(new Integer(dept.getId()));
   }
 }