Examples of ugrade()


Examples of org.olat.core.util.notifications.NotificationsUpgrade.ugrade()

    NotificationsUpgrade upgrade = notificationUpgrades.get(type);
    if(upgrade == null) {
      log.error("No upgrader for publisher: " + publisher.getType());
      return null;
    }
    return upgrade.ugrade(publisher);
  }
}
View Full Code Here

Examples of org.olat.core.util.notifications.NotificationsUpgrade.ugrade()

    if(upgrade == null) {
      log.error("No upgrader for publisher: " + publisher.getType());
      return null;
    }
    log.audit("upgrading..."+upgrade.getClass().getName());
    return upgrade.ugrade(publisher);
  }
 
  private void migrateMessages(UpgradeManager upgradeManager, UpgradeHistoryData uhd) {
    if (!uhd.getBooleanDataValue(TASK_MIGRATE_FORUMS_MESSAGES)) {
      log.audit("+-----------------------------------------------------------------------------+");
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.