mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

neil_a_wilson
18.06.2006 de9ad4f938491567e539ab5151320ec901ae1251
opends/src/server/org/opends/server/core/PluginConfigManager.java
@@ -554,6 +554,40 @@
  /**
   * Retrieves the set of plugins that have been registered with the Directory
   * Server.
   *
   * @return  The set of plugins that have been registered with the Directory
   *          Server.
   */
  public ConcurrentHashMap<DN,DirectoryServerPlugin> getRegisteredPlugins()
  {
    assert debugEnter(CLASS_NAME, "getRegisteredPlugins");
    return registeredPlugins;
  }
  /**
   * Retrieves the plugin with the specified configuration entry DN.
   *
   * @param  pluginDN  The DN of the configuration entry for the plugin to
   *                   retrieve.
   *
   * @return  The requested plugin, or <CODE>null</CODE> if there is no such
   *          plugin.
   */
  public DirectoryServerPlugin getRegisteredPlugin(DN pluginDN)
  {
    assert debugEnter(CLASS_NAME, "getRegisteredPlugin",
                      String.valueOf(pluginDN));
    return registeredPlugins.get(pluginDN);
  }
  /**
   * Indicates whether the configuration entry that will result from a proposed