Package com.day.cq.dam.core.process
Class AbstractScheduledReplicationBPProcess
- java.lang.Object
-
- com.day.cq.dam.core.process.AbstractScheduledReplicationBPProcess
-
- All Implemented Interfaces:
WorkflowProcess
- Direct Known Subclasses:
ScheduledPublishBPProcess
,ScheduledUnPublishBPProcess
@Service(WorkflowProcess.class) @Property(name="service.description",value="Scheduled Publish/Unpublish of Assets to Brand Portal") @Property(name="process.label",value="Scheduled Publish Brand Portal") public abstract class AbstractScheduledReplicationBPProcess extends java.lang.Object implements WorkflowProcess
TheScheduledPublishBPProcess
is called in a workflow process step. This process will publish(or unpublish) content to Brand Portal after a specified time.
-
-
Constructor Summary
Constructors Constructor Description AbstractScheduledReplicationBPProcess()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
execute(WorkItem workItem, WorkflowSession workflowSession, MetaDataMap metadataMap)
Executes a new Java process with the given
andWorkItem
.WorkflowSession
-
-
-
Method Detail
-
execute
public void execute(WorkItem workItem, WorkflowSession workflowSession, MetaDataMap metadataMap) 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
WorkflowProcess
.metadataMap
- Process specific arguments can be passed here- Throws:
WorkflowException
- Thrown in case something goes wrong during execution.
-
-