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

neil_a_wilson
11.02.2006 90e372637db76c6c9dd14a1206d28c1cb0298590
opends/src/server/org/opends/server/core/PluginConfigManager.java
@@ -1693,17 +1693,20 @@
  /**
   * Invokes the set of shutdown plugins that have been configured in the
   * Directory Server.
   *
   * @param  reason  The human-readable reason for the shutdown.
   */
  public void invokeShutdownPlugins()
  public void invokeShutdownPlugins(String reason)
  {
    assert debugEnter(CLASS_NAME, "invokeShutdownPlugins");
    assert debugEnter(CLASS_NAME, "invokeShutdownPlugins",
                      String.valueOf(reason));
    for (DirectoryServerPlugin p : shutdownPlugins)
    {
      try
      {
        p.doShutdown();
        p.doShutdown(reason);
      }
      catch (Exception e)
      {