Interface AccessCertificationEvent
-
- All Superinterfaces:
DebugDumpable
,Event
,Serializable
,ShortDumpable
- All Known Subinterfaces:
CertCampaignEvent
,CertCampaignStageEvent
,CertReviewEvent
public interface AccessCertificationEvent extends Event
An event related to access certification.
-
-
Field Summary
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description AccessCertificationCampaignType
getCampaign()
Related certification campaign.default String
getCampaignName()
Name of the related certification campaign.AccessCertificationStageDefinitionType
getCurrentStageDefinition()
Definition of the current stage.EventOperationType
getOperationType()
Type of the operation: usually - ADD (opening campaign/stage) - DELETE (closing campaign/stage).OperationResultStatus
getStatus()
Status of the operation.-
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
-
getOperationType
EventOperationType getOperationType()
Type of the operation: usually - ADD (opening campaign/stage) - DELETE (closing campaign/stage). In special cases there can be MODIFY e.g. meaning "stage deadline approaching".
-
getStatus
OperationResultStatus getStatus()
Status of the operation. (Currently always SUCCESS.)
-
getCampaign
@NotNull AccessCertificationCampaignType getCampaign()
Related certification campaign.
-
getCampaignName
default String getCampaignName()
Name of the related certification campaign.
-
getCurrentStageDefinition
AccessCertificationStageDefinitionType getCurrentStageDefinition()
Definition of the current stage.
-
-