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
TheScheduledPublishBPProcessis 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 voidexecute(WorkItem workItem, WorkflowSession workflowSession, MetaDataMap metadataMap)Executes a new Java process with the givenandWorkItem.WorkflowSession
-
-
-
Method Detail
-
execute
public void execute(WorkItem workItem, WorkflowSession workflowSession, MetaDataMap metadataMap) throws WorkflowException
Description copied from interface:WorkflowProcessExecutes a new Java process with the givenandWorkItem.WorkflowSession- Specified by:
executein interfaceWorkflowProcess- Parameters:
workItem- Thethat defines the newly startedWorkItemJavaProcessNew.workflowSession- Thethat is used for starting theWorkflowSessionWorkflowProcess.metadataMap- Process specific arguments can be passed here- Throws:
WorkflowException- Thrown in case something goes wrong during execution.
-
-