Package com.gitblit.manager

Examples of com.gitblit.manager.IGitblit.stopPlugins()


    @Override
    public void run() throws Failure {
      IGitblit gitblit = getContext().getGitblit();
      if (id.equalsIgnoreCase("ALL")) {
        gitblit.stopPlugins();
        stdout.println("All plugins stopped");
      } else {
        PluginWrapper pluginWrapper = getPlugin(id);
        if (pluginWrapper == null) {
          throw new UnloggedFailure(String.format("Plugin %s is not installed!", id));
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.