Package it.eng.spagobi.kpi.ou.bo

Examples of it.eng.spagobi.kpi.ou.bo.OrganizationalUnit.deepEquals()


    while (it.hasNext()) {
      OrganizationalUnit ou = it.next();
      int index = newOUs.indexOf(ou);
      if (index >= 0) {
        OrganizationalUnit newOU = newOUs.get(index);
        if (!newOU.deepEquals(ou)) {
          logger.debug("OU " + ou + " has been changed. Updating it ...");
          ou.setName(newOU.getName());
          ou.setDescription(newOU.getDescription());
          DAOFactory.getOrganizationalUnitDAO().modifyOrganizationalUnit(ou);
          logger.debug("OU updated: " + ou);
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.