Class StepElementRunner
- java.lang.Object
-
- org.nuxeo.ecm.platform.routing.core.impl.StepElementRunner
-
- All Implemented Interfaces:
ElementRunner
@Deprecated public class StepElementRunner extends Object implements ElementRunner
Deprecated.since 5.9.2 - Use only routes of type 'graph'Run the operation chain for this step.- Author:
- Alexandre Russel
-
-
Constructor Summary
Constructors Constructor Description StepElementRunner()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
cancel(CoreSession session, DocumentRouteElement element)
Deprecated.Cancel this element.AutomationService
getAutomationService()
Deprecated.DocumentRoutingService
getDocumentRoutingService()
Deprecated.void
resume(CoreSession session, DocumentRouteElement element, String nodeId, String taskId, Map<String,Object> data, String status)
Deprecated.Resumes this graph route on a given node.void
run(CoreSession session, DocumentRouteElement element)
Deprecated.Run this element.void
run(CoreSession session, DocumentRouteElement element, Map<String,Serializable> map)
Deprecated.Run this element.void
undo(CoreSession session, DocumentRouteElement element)
Deprecated.Run the undo chain on this element.
-
-
-
Method Detail
-
run
public void run(CoreSession session, DocumentRouteElement element)
Deprecated.Description copied from interface:ElementRunner
Run this element. If an exception is thrown while doing, it cancels the route.- Specified by:
run
in interfaceElementRunner
-
run
public void run(CoreSession session, DocumentRouteElement element, Map<String,Serializable> map)
Deprecated.Description copied from interface:ElementRunner
Run this element.- Specified by:
run
in interfaceElementRunner
-
resume
public void resume(CoreSession session, DocumentRouteElement element, String nodeId, String taskId, Map<String,Object> data, String status)
Deprecated.Description copied from interface:ElementRunner
Resumes this graph route on a given node.- Specified by:
resume
in interfaceElementRunner
-
getAutomationService
public AutomationService getAutomationService()
Deprecated.
-
getDocumentRoutingService
public DocumentRoutingService getDocumentRoutingService()
Deprecated.
-
undo
public void undo(CoreSession session, DocumentRouteElement element)
Deprecated.Description copied from interface:ElementRunner
Run the undo chain on this element. If this element is not a step, then throw an exception.- Specified by:
undo
in interfaceElementRunner
-
cancel
public void cancel(CoreSession session, DocumentRouteElement element)
Deprecated.Description copied from interface:ElementRunner
Cancel this element.- Specified by:
cancel
in interfaceElementRunner
- See Also:
DocumentRouteElement.cancel(CoreSession)
-
-