Package org.opends.server.types
Class SynchronizationProviderResult.StopProcessing
- java.lang.Object
-
- org.opends.server.types.SynchronizationProviderResult.StopProcessing
-
- All Implemented Interfaces:
PluginResult.OperationResult
,SynchronizationProviderResult
- Enclosing interface:
- SynchronizationProviderResult
public static class SynchronizationProviderResult.StopProcessing extends Object implements SynchronizationProviderResult
Defines a stop processing synchronization provider result.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.opends.server.types.SynchronizationProviderResult
SynchronizationProviderResult.ContinueProcessing, SynchronizationProviderResult.StopProcessing
-
-
Constructor Summary
Constructors Constructor Description StopProcessing(Result result)
Construct a new stop processing synchronization provider result.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
continueProcessing()
Indicates whether processing on the associated operation should continue.Result
getResult()
The result for this plugin result.String
toString()
-
-
-
Constructor Detail
-
StopProcessing
public StopProcessing(Result result)
Construct a new stop processing synchronization provider result.- Parameters:
result
- The result explaining how and why processing should stop.
-
-
Method Detail
-
getResult
public Result getResult()
Description copied from interface:PluginResult.OperationResult
The result for this plugin result.- Specified by:
getResult
in interfacePluginResult.OperationResult
- Returns:
- the result for this plugin result
-
continueProcessing
public boolean continueProcessing()
Description copied from interface:PluginResult.OperationResult
Indicates whether processing on the associated operation should continue.- Specified by:
continueProcessing
in interfacePluginResult.OperationResult
- Returns:
true
if processing on the associated operation should continue, orfalse
if it should stop.
-
-