Package com.day.cq.workflow.exec
Interface JavaProcess
- All Known Subinterfaces:
JavaProcessExt
public interface JavaProcess
Deprecated.
JavaProcess
is 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 a WorkflowNode
and executed
by the workflow engine.- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
execute
(WorkItem item, WorkflowSession session) Deprecated.
-
Method Details
-
execute
Deprecated.Executes a new Java process with the given
andWorkItem
.WorkflowSession
- Parameters:
item
- The
that defines the newly startedWorkItem
JavaProcess
.session
- The
that is used for starting theWorkflowSession
JavaProcess
.- Throws:
Exception
- Thrown in case something goes wrong during execution.
-
WorkflowProcess
instead.