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

neil_a_wilson
25.51.2007 05dfa5fee15b191c3ee1afae0010b70733b1a35b
opends/src/server/org/opends/server/core/ExtendedOperation.java
@@ -484,6 +484,7 @@
        logExtendedRequest(this);
        logExtendedResponse(this);
        pluginConfigManager.invokePostResponseExtendedPlugins(this);
        return;
      }
      else if (preParseResult.sendResponseImmediately())
@@ -492,6 +493,11 @@
        logExtendedRequest(this);
        break extendedProcessing;
      }
      else if (preParseResult.skipCoreProcessing())
      {
        skipPostOperation = false;
        break extendedProcessing;
      }
      // Log the extended request message.
@@ -506,6 +512,7 @@
        {
          indicateCancelled(cancelRequest);
          processingStopTime = System.currentTimeMillis();
          pluginConfigManager.invokePostResponseExtendedPlugins(this);
          return;
        }
      }
@@ -582,6 +589,7 @@
        processingStopTime = System.currentTimeMillis();
        logExtendedResponse(this);
        pluginConfigManager.invokePostResponseExtendedPlugins(this);
        return;
      }
      else if (preOpResult.sendResponseImmediately())
@@ -589,6 +597,11 @@
        skipPostOperation = true;
        break extendedProcessing;
      }
      else if (preOpResult.skipCoreProcessing())
      {
        skipPostOperation = false;
        break extendedProcessing;
      }
      // Check for and handle a request to cancel this operation.
@@ -599,6 +612,7 @@
        {
          indicateCancelled(cancelRequest);
          processingStopTime = System.currentTimeMillis();
          pluginConfigManager.invokePostResponseExtendedPlugins(this);
          return;
        }
      }
@@ -630,6 +644,7 @@
        processingStopTime = System.currentTimeMillis();
        logExtendedResponse(this);
        pluginConfigManager.invokePostResponseExtendedPlugins(this);
        return;
      }
    }