Interface TaskEvent
-
- All Superinterfaces:
DebugDumpable
,Event
,Serializable
,ShortDumpable
public interface TaskEvent extends Event
-
-
Field Summary
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getMessage()
OperationResultStatus
getOperationResultStatus()
@NotNull EventOperationType
getOperationType()
long
getProgress()
@NotNull Task
getTask()
@Nullable TaskRunResult
getTaskRunResult()
boolean
isFinished()
boolean
isInterrupted()
boolean
isPermanentError()
boolean
isTemporaryError()
-
Methods inherited from interface com.evolveum.midpoint.util.DebugDumpable
debugDump, debugDump, debugDumpLazily, debugDumpLazily
-
Methods inherited from interface com.evolveum.midpoint.notifications.api.events.Event
getAdHocHandler, getChannel, getFocusPassword, getId, getRequestee, getRequesteeDisplayName, getRequesteeObject, getRequesteeOid, getRequester, getRequesterOid, getStatusAsText, isAccountRelated, isAdd, isAlsoSuccess, isCategoryType, isCertCampaignStageRelated, isDelete, isFailure, isInProgress, isModify, isOnlyFailure, isOperationType, isPolicyRuleRelated, isRelatedToItem, isStatusType, isSuccess, isUserRelated, isWorkflowProcessRelated, isWorkflowRelated, isWorkItemRelated, requesteeIs, requesteeIsUser
-
Methods inherited from interface com.evolveum.midpoint.util.ShortDumpable
shortDump, shortDump, shortDumpLazily
-
-
-
-
Method Detail
-
getTask
@NotNull @NotNull Task getTask()
-
getTaskRunResult
@Nullable @Nullable TaskRunResult getTaskRunResult()
-
getOperationType
@NotNull @NotNull EventOperationType getOperationType()
-
isTemporaryError
boolean isTemporaryError()
-
isPermanentError
boolean isPermanentError()
-
isFinished
boolean isFinished()
-
isInterrupted
boolean isInterrupted()
-
getOperationResultStatus
OperationResultStatus getOperationResultStatus()
-
getMessage
String getMessage()
-
getProgress
long getProgress()
-
-