Package de.sub.goobi.forms

Examples of de.sub.goobi.forms.ModuleServerForm


public class ModulListener implements ServletContextListener {
   private static final Logger myLogger = Logger.getLogger(ModulListener.class);

   public void contextInitialized(ServletContextEvent event) {
      myLogger.debug("Starte Modularisierung-Server", null);
      new ModuleServerForm().startAllModules();
      myLogger.debug("Gestartet: Modularisierung-Server", null);
   }
View Full Code Here


      myLogger.debug("Gestartet: Modularisierung-Server", null);
   }

   public void contextDestroyed(ServletContextEvent event) {
      myLogger.debug("Stoppe Modularisierung-Server", null);
      new ModuleServerForm().stopAllModules();
      myLogger.debug("Gestoppt: Modularisierung-Server", null);
   }
View Full Code Here

TOP

Related Classes of de.sub.goobi.forms.ModuleServerForm

Copyright © 2018 www.massapicom. 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.