Package org.opends.server.api.plugin
Interface PluginResult.OperationResult
- All Known Subinterfaces:
SynchronizationProviderResult
- All Known Implementing Classes:
PluginResult.IntermediateResponse,PluginResult.PostOperation,PluginResult.PreOperation,PluginResult.PreParse,PluginResult.SubordinateDelete,PluginResult.SubordinateModifyDN,SynchronizationProviderResult.ContinueProcessing,SynchronizationProviderResult.StopProcessing
- Enclosing class:
- PluginResult
public static interface PluginResult.OperationResult
Contract for operation results.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanIndicates whether processing on the associated operation should continue.result()The result for this plugin result.
-
Method Details
-
result
Result result()The result for this plugin result.- Returns:
- the result for this plugin result
-
continueProcessing
boolean continueProcessing()Indicates whether processing on the associated operation should continue.- Returns:
trueif processing on the associated operation should continue, orfalseif it should stop.
-