Package com.evolveum.midpoint.schema
Interface ObjectHandler<T>
- Type Parameters:
 T- type of the objects; intentionally general enough to cover both prism objects, containerables, and maybe others in the future
- All Known Subinterfaces:
 ContainerableResultHandler<C>,ResultHandler<T>
- All Known Implementing Classes:
 AbstractSummarizingResultHandler
- Functional Interface:
 - This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
Classes implementing this interface are used to handle arbitrary objects (not always 
PrismObject instances),
 typically - but not necessarily - coming from iterative search operation.
 TODO resolve class naming with ResultHandler; maybe ObjectHandler is not the best name at all?- See Also:
 
- 
Method Summary
Modifier and TypeMethodDescriptionbooleanhandle(T object, OperationResult result) Handle a single object. 
- 
Method Details
- 
handle
Handle a single object.- Parameters:
 object- Object to handle.result- Where to store the result of the processing.- Returns:
 - true if the operation should proceed, false if it should stop
 
 
 -