| | |
| | | import org.opends.server.types.operation.PostOperationBindOperation; |
| | | import org.opends.server.types.operation.PostOperationCompareOperation; |
| | | import org.opends.server.types.operation.PostOperationDeleteOperation; |
| | | import org.opends.server.types.operation.PostOperationExtendedOperation; |
| | | import org.opends.server.types.operation.PostOperationModifyDNOperation; |
| | | import org.opends.server.types.operation.PostOperationModifyOperation; |
| | | import org.opends.server.types.operation.PostOperationSearchOperation; |
| | |
| | | import org.opends.server.types.operation.PostResponseBindOperation; |
| | | import org.opends.server.types.operation.PostResponseCompareOperation; |
| | | import org.opends.server.types.operation.PostResponseDeleteOperation; |
| | | import org.opends.server.types.operation.PostResponseExtendedOperation; |
| | | import org.opends.server.types.operation.PostResponseModifyDNOperation; |
| | | import org.opends.server.types.operation.PostResponseModifyOperation; |
| | | import org.opends.server.types.operation.PostResponseSearchOperation; |
| | |
| | | import org.opends.server.types.operation.PreOperationBindOperation; |
| | | import org.opends.server.types.operation.PreOperationCompareOperation; |
| | | import org.opends.server.types.operation.PreOperationDeleteOperation; |
| | | import org.opends.server.types.operation.PreOperationExtendedOperation; |
| | | import org.opends.server.types.operation.PreOperationModifyDNOperation; |
| | | import org.opends.server.types.operation.PreOperationModifyOperation; |
| | | import org.opends.server.types.operation.PreOperationSearchOperation; |
| | |
| | | import org.opends.server.types.operation.PreParseBindOperation; |
| | | import org.opends.server.types.operation.PreParseCompareOperation; |
| | | import org.opends.server.types.operation.PreParseDeleteOperation; |
| | | import org.opends.server.types.operation.PreParseExtendedOperation; |
| | | import org.opends.server.types.operation.PreParseModifyOperation; |
| | | import org.opends.server.types.operation.PreParseSearchOperation; |
| | | import org.opends.server.workflowelement.localbackend.*; |
| | |
| | | * @return The result of processing the pre-parse extended plugins. |
| | | */ |
| | | public PreParsePluginResult invokePreParseExtendedPlugins( |
| | | ExtendedOperation extendedOperation) |
| | | PreParseExtendedOperation extendedOperation) |
| | | { |
| | | PreParsePluginResult result = null; |
| | | |
| | |
| | | * @return The result of processing the pre-operation extended plugins. |
| | | */ |
| | | public PreOperationPluginResult invokePreOperationExtendedPlugins( |
| | | ExtendedOperation extendedOperation) |
| | | PreOperationExtendedOperation extendedOperation) |
| | | { |
| | | PreOperationPluginResult result = null; |
| | | |
| | |
| | | * @return The result of processing the post-operation extended plugins. |
| | | */ |
| | | public PostOperationPluginResult invokePostOperationExtendedPlugins( |
| | | ExtendedOperation extendedOperation) |
| | | PostOperationExtendedOperation extendedOperation) |
| | | { |
| | | PostOperationPluginResult result = null; |
| | | |
| | |
| | | * @return The result of processing the post-response extended plugins. |
| | | */ |
| | | public PostResponsePluginResult invokePostResponseExtendedPlugins( |
| | | ExtendedOperation extendedOperation) |
| | | PostResponseExtendedOperation extendedOperation) |
| | | { |
| | | PostResponsePluginResult result = null; |
| | | |