Package com.evolveum.midpoint.schema
Interface ContainerableResultHandler<C extends Containerable>
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ContainerableResultHandler<C extends Containerable>
Handles iterative processes that concern containerables.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
handle(C value, OperationResult parentResult)
Handle a single value.
-
-
-
Method Detail
-
handle
boolean handle(C value, OperationResult parentResult)
Handle a single value.- Parameters:
value
- Value to process.- Returns:
- true if the operation should proceed, false if it should stop
-
-