| | |
| | | |
| | | logExtendedRequest(this); |
| | | logExtendedResponse(this); |
| | | pluginConfigManager.invokePostResponseExtendedPlugins(this); |
| | | return; |
| | | } |
| | | else if (preParseResult.sendResponseImmediately()) |
| | |
| | | logExtendedRequest(this); |
| | | break extendedProcessing; |
| | | } |
| | | else if (preParseResult.skipCoreProcessing()) |
| | | { |
| | | skipPostOperation = false; |
| | | break extendedProcessing; |
| | | } |
| | | |
| | | |
| | | // Log the extended request message. |
| | |
| | | { |
| | | indicateCancelled(cancelRequest); |
| | | processingStopTime = System.currentTimeMillis(); |
| | | pluginConfigManager.invokePostResponseExtendedPlugins(this); |
| | | return; |
| | | } |
| | | } |
| | |
| | | processingStopTime = System.currentTimeMillis(); |
| | | |
| | | logExtendedResponse(this); |
| | | pluginConfigManager.invokePostResponseExtendedPlugins(this); |
| | | return; |
| | | } |
| | | else if (preOpResult.sendResponseImmediately()) |
| | |
| | | skipPostOperation = true; |
| | | break extendedProcessing; |
| | | } |
| | | else if (preOpResult.skipCoreProcessing()) |
| | | { |
| | | skipPostOperation = false; |
| | | break extendedProcessing; |
| | | } |
| | | |
| | | |
| | | // Check for and handle a request to cancel this operation. |
| | |
| | | { |
| | | indicateCancelled(cancelRequest); |
| | | processingStopTime = System.currentTimeMillis(); |
| | | pluginConfigManager.invokePostResponseExtendedPlugins(this); |
| | | return; |
| | | } |
| | | } |
| | |
| | | processingStopTime = System.currentTimeMillis(); |
| | | |
| | | logExtendedResponse(this); |
| | | pluginConfigManager.invokePostResponseExtendedPlugins(this); |
| | | return; |
| | | } |
| | | } |