Package com.evolveum.midpoint.schema
Class AbstractSummarizingResultHandler<T extends ObjectType>
java.lang.Object
com.evolveum.midpoint.schema.AbstractSummarizingResultHandler<T>
- All Implemented Interfaces:
ObjectHandler<PrismObject<T>>
,ResultHandler<T>
public abstract class AbstractSummarizingResultHandler<T extends ObjectType>
extends Object
implements ResultHandler<T>
Class provides
OperationResult
summarizing functionality for result handler.
Result is summarized after every handled object.- Author:
- lazyman
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
protected
AbstractSummarizingResultHandler
(boolean summarizeErrors, boolean summarizePartialErrors, boolean summarizeSuccesses) -
Method Summary
Modifier and TypeMethodDescriptionboolean
handle
(PrismObject<T> object, OperationResult parentResult) Handle a single object.protected abstract boolean
handleObject
(PrismObject<T> object, OperationResult parentResult) Handle a single result.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.evolveum.midpoint.schema.ResultHandler
providingOwnOperationResult
-
Constructor Details
-
AbstractSummarizingResultHandler
protected AbstractSummarizingResultHandler() -
AbstractSummarizingResultHandler
protected AbstractSummarizingResultHandler(boolean summarizeErrors, boolean summarizePartialErrors, boolean summarizeSuccesses)
-
-
Method Details
-
handle
Description copied from interface:ObjectHandler
Handle a single object.- Specified by:
handle
in interfaceObjectHandler<T extends ObjectType>
- Parameters:
object
- Object to handle.parentResult
- Where to store the result of the processing.- Returns:
- true if the operation should proceed, false if it should stop
-
handleObject
Handle a single result.- Parameters:
object
- Resource object to process.- Returns:
- true if the operation should proceed, false if it should stop
-