Package com.day.cq.wcm.workflow.process
Class AfterMovePageProcess
- java.lang.Object
-
- com.day.cq.wcm.workflow.process.AfterMovePageProcess
-
- All Implemented Interfaces:
WorkflowProcess
@Service(WorkflowProcess.class) @Property(name="process.label", value="Replicate After Page Move") public class AfterMovePageProcess extends java.lang.Object implements WorkflowProcess
AfterMovePageProcess
Process to perform replication after a move operation.- See Also:
ReplicatePageProcess
-
-
Constructor Summary
Constructors Constructor Description AfterMovePageProcess()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
execute(WorkItem workItem, WorkflowSession workflowSession, MetaDataMap args)
Executes a new Java process with the given
andWorkItem
.WorkflowSession
-
-
-
Method Detail
-
execute
public void execute(WorkItem workItem, WorkflowSession workflowSession, MetaDataMap args) throws WorkflowException
Description copied from interface:WorkflowProcess
Executes a new Java process with the given
andWorkItem
.WorkflowSession
- Specified by:
execute
in interfaceWorkflowProcess
- Parameters:
workItem
- The
that defines the newly startedWorkItem
JavaProcessNew
.workflowSession
- The
that is used for starting theWorkflowSession
JavaProcess
.args
- Process specific arguments can be passed here- Throws:
WorkflowException
- Thrown in case something goes wrong during execution.- See Also:
WorkflowProcess.execute(com.day.cq.workflow.exec.WorkItem, com.day.cq.workflow.WorkflowSession, com.day.cq.workflow.metadata.MetaDataMap)
-
-