Package com.day.cq.workflow.exec
Interface JavaProcess
-
- All Known Subinterfaces:
JavaProcessExt
public interface JavaProcessDeprecated.UseWorkflowProcessinstead.JavaProcessis the interface for is used for automatic workflow steps implemented in Java. Classes implementing this interface define Java based processes that can be attached to aWorkflowNodeand executed by the workflow engine.- See Also:
WorkflowProcess
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidexecute(WorkItem item, WorkflowSession session)Deprecated.
-
-
-
Method Detail
-
execute
void execute(WorkItem item, WorkflowSession session) throws java.lang.Exception
Deprecated.Executes a new Java process with the givenandWorkItem.WorkflowSession- Parameters:
item- Thethat defines the newly startedWorkItemJavaProcess.session- Thethat is used for starting theWorkflowSessionJavaProcess.- Throws:
java.lang.Exception- Thrown in case something goes wrong during execution.
-
-