Package org.keycloak.models.workflow
Interface WorkflowProviderEvent.WorkflowResourceMigratedEvent
- All Superinterfaces:
ProviderEvent,WorkflowProviderEvent
- Enclosing interface:
- WorkflowProviderEvent
public static interface WorkflowProviderEvent.WorkflowResourceMigratedEvent
extends WorkflowProviderEvent
Event fired when workflow resources are migrated from one step/workflow to another.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.keycloak.models.workflow.WorkflowProviderEvent
WorkflowProviderEvent.WorkflowActivatedEvent, WorkflowProviderEvent.WorkflowCompletedEvent, WorkflowProviderEvent.WorkflowDeactivatedEvent, WorkflowProviderEvent.WorkflowResourceMigratedEvent, WorkflowProviderEvent.WorkflowRestartedEvent, WorkflowProviderEvent.WorkflowStepExecutedEvent, WorkflowProviderEvent.WorkflowStepFailedEvent, WorkflowProviderEvent.WorkflowStepScheduledEvent -
Method Summary
Modifier and TypeMethodDescriptionGets the destination step ID.Gets the destination step provider ID.Gets the destination workflow ID.Gets the destination workflow name.default StringGets the execution ID for this workflow activation.Gets the new execution ID (for the destination workflow).Gets the old execution ID (from the source workflow).Gets the source step ID.Gets the source step provider ID.Gets the source workflow ID.Gets the source workflow name.Methods inherited from interface org.keycloak.models.workflow.WorkflowProviderEvent
getKeycloakSession, getRealm, getResourceId, getResourceType, getWorkflowId, getWorkflowName
-
Method Details
-
getExecutionId
Description copied from interface:WorkflowProviderEventGets the execution ID for this workflow activation.- Specified by:
getExecutionIdin interfaceWorkflowProviderEvent- Returns:
- the execution ID
-
getSourceWorkflowId
String getSourceWorkflowId()Gets the source workflow ID.- Returns:
- the source workflow ID
-
getSourceWorkflowName
String getSourceWorkflowName()Gets the source workflow name.- Returns:
- the source workflow name
-
getDestinationWorkflowId
String getDestinationWorkflowId()Gets the destination workflow ID.- Returns:
- the destination workflow ID
-
getDestinationWorkflowName
String getDestinationWorkflowName()Gets the destination workflow name.- Returns:
- the destination workflow name
-
getSourceStepId
String getSourceStepId()Gets the source step ID.- Returns:
- the source step ID
-
getSourceStepProviderId
String getSourceStepProviderId()Gets the source step provider ID.- Returns:
- the source step provider ID
-
getDestinationStepId
String getDestinationStepId()Gets the destination step ID.- Returns:
- the destination step ID
-
getDestinationStepProviderId
String getDestinationStepProviderId()Gets the destination step provider ID.- Returns:
- the destination step provider ID
-
getOldExecutionId
String getOldExecutionId()Gets the old execution ID (from the source workflow).- Returns:
- the old execution ID
-
getNewExecutionId
String getNewExecutionId()Gets the new execution ID (for the destination workflow).- Returns:
- the new execution ID
-