Enum Class DocumentRoutingConstants.Events
java.lang.Object
java.lang.Enum<DocumentRoutingConstants.Events>
org.nuxeo.ecm.platform.routing.api.DocumentRoutingConstants.Events
- All Implemented Interfaces:
Serializable
,Comparable<DocumentRoutingConstants.Events>
,Constable
- Enclosing interface:
- DocumentRoutingConstants
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionafter the route is finished.after the route is ready, each part of the route is in "Ready" state.The session used is unrestricted.after the route is validated, each part of the route is in "Validated" state.after a step was put back to ready state.after the operation chain for this step is called.The step is in "Done" state.The session used is unrestricted.after the undo operation is run on the step.before the route is ready, each part of the route is in "Validated" state.The session used is unrestricted.before the route starts.before the route is validated, each part of the route is in "Draft" state.before a step is put back to ready state.before the operation chain for this step is called.before the undo operation is run on the step.After the operation chain of this step ran and if the step is not done, ie: if we are in a waiting state.The session used is unrestricted. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static DocumentRoutingConstants.Events[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
beforeRouteValidated
before the route is validated, each part of the route is in "Draft" state. The session used is unrestricted. The element key is the route. -
afterRouteValidated
after the route is validated, each part of the route is in "Validated" state. The session used is unrestricted. The element key is the route. -
beforeRouteReady
before the route is ready, each part of the route is in "Validated" state.The session used is unrestricted. The element key is the route. -
afterRouteReady
after the route is ready, each part of the route is in "Ready" state.The session used is unrestricted. The element key is the route. -
beforeRouteStart
before the route starts. The RouteDocument is in "Running" state, other parts of the route is either in Ready, Running or Done state.The session used is unrestricted. The element key is the route. -
afterRouteFinish
after the route is finished. The route and each part of the route is in Done state.The session used is unrestricted. The element key is the route. -
beforeStepRunning
before the operation chain for this step is called. The step is in "Running" state.The session used is unrestricted. The element key is the step. -
stepWaiting
After the operation chain of this step ran and if the step is not done, ie: if we are in a waiting state.The session used is unrestricted. The element key is the step. -
afterStepRunning
after the operation chain for this step is called.The step is in "Done" state.The session used is unrestricted. The element key is the step. -
beforeStepBackToReady
before a step is put back to ready state. -
afterStepBackToReady
after a step was put back to ready state. -
beforeUndoingStep
before the undo operation is run on the step. -
afterUndoingStep
after the undo operation is run on the step. -
workflowCanceled
- Since:
- 2.7.2
-
afterWorkflowFinish
- Since:
- 7.4
-
afterWorkflowStarted
- Since:
- 7.4
-
beforeWorkflowCanceled
- Since:
- 7.4
-
afterWorkflowTaskEnded
- Since:
- 7.4
-
afterWorkflowTaskCreated
- Since:
- 7.4
-
afterWorkflowTaskReassigned
- Since:
- 7.4
-
afterWorkflowTaskDelegated
- Since:
- 7.4
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-