Examples of GitblitWicketPlugin


Examples of com.gitblit.extensions.GitblitWicketPlugin

    for (PluginWrapper pluginWrapper : pluginManager.getPlugins()) {
      if (PluginState.STARTED != pluginWrapper.getPluginState()) {
        continue;
      }
      if (pluginWrapper.getPlugin() instanceof GitblitWicketPlugin) {
        GitblitWicketPlugin wicketPlugin = (GitblitWicketPlugin) pluginWrapper.getPlugin();
        wicketPlugin.init(this);
      }
    }

     // customize the Wicket class resolver to load from plugins
    IClassResolver coreResolver = getApplicationSettings().getClassResolver();
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.