Package com.gitblit.manager

Examples of com.gitblit.manager.IRuntimeManager.start()


    logManager(IRuntimeManager.class);
    IRuntimeManager runtime = injector.get(IRuntimeManager.class);
    runtime.setBaseFolder(baseFolder);
    runtime.getStatus().isGO = goSettings != null;
    runtime.getStatus().servletContainer = context.getServerInfo();
    runtime.start();
    managers.add(runtime);

    // start all other managers
    startManager(injector, INotificationManager.class);
    startManager(injector, IUserManager.class);
View Full Code Here


    logManager(IRuntimeManager.class);
    IRuntimeManager runtime = injector.get(IRuntimeManager.class);
    runtime.setBaseFolder(baseFolder);
    runtime.getStatus().isGO = goSettings != null;
    runtime.getStatus().servletContainer = context.getServerInfo();
    runtime.start();
    managers.add(runtime);

    // create the plugin manager instance but do not start it
    loadManager(injector, IPluginManager.class);
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.