Package org.olat.core.configuration

Examples of org.olat.core.configuration.OLATModule.destroy()


      // destroy modules in the reverse load order to solve dependencies
      for (int i = modules.size()-1; i>-1; i--) {
        OLATModule olatmodule = modules.get(i);
        log.info("*** DESTORY: Destroying module '" + olatmodule.getClass().getName() + "'.");
        try {
          olatmodule.destroy();
        } catch (Exception e) {
          // don't propagate any exceptions
          log.error("Exception destroying module '" + olatmodule.getClass().getName() + "'.", e);
        }
      }
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.