Package com.evolveum.midpoint.task.api
Interface ConnIdOperationsListener
- All Known Subinterfaces:
RunningLightweightTask,RunningTask,Task
- All Known Implementing Classes:
NullTaskImpl
public interface ConnIdOperationsListener
Obtains information about ConnId operations executed.
-
Method Summary
Modifier and TypeMethodDescriptiondefault voidonConnIdOperationEnd(@NotNull ConnIdOperation operation) Called when an operation ends (successfully or not).default voidonConnIdOperationResume(@NotNull ConnIdOperation operation) Called when an operation is resumed, i.e. the control goes back to the operation.default voidonConnIdOperationStart(@NotNull ConnIdOperation operation) Called when an operation starts.default voidonConnIdOperationSuspend(@NotNull ConnIdOperation operation) Called when an operation is suspended, i.e. the control goes to the client code.
-
Method Details
-
onConnIdOperationStart
Called when an operation starts. -
onConnIdOperationEnd
Called when an operation ends (successfully or not). -
onConnIdOperationSuspend
Called when an operation is suspended, i.e. the control goes to the client code. For example, when a object is being passed to the handler during iterative search. -
onConnIdOperationResume
Called when an operation is resumed, i.e. the control goes back to the operation. For example, when a object handling is finished during iterative search and the search continues.
-