All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.day.cq.workflow.job.WorkflowJob Maven / Gradle / Ivy

/*
 * Copyright 1997-2008 Day Management AG
 * Barfuesserplatz 6, 4001 Basel, Switzerland
 * All Rights Reserved.
 *
 * This software is the confidential and proprietary information of
 * Day Management AG, ("Confidential Information"). You shall not
 * disclose such Confidential Information and shall use it only in
 * accordance with the terms of the license agreement you entered into
 * with Day.
 */
package com.day.cq.workflow.job;

import java.io.Serializable;
import java.util.Dictionary;
import java.util.Hashtable;
import java.util.Map;

import org.apache.sling.event.EventUtil;
import org.osgi.service.event.Event;

import com.day.cq.workflow.exec.WorkItem;

/**
 * The WorkflowJob class provides a utility for creating event
 * triggered job used for programmed/scripted workflow steps.
 */
public class WorkflowJob implements Serializable {
	/** Generated serial version UID. */
	private static final long serialVersionUID = 5670996916430565635L;

	/** The job topic for adding an entry to the audit log. */
	public static final String JOB_TOPIC = "com/day/cq/workflow/job";

    public static final String JOB_TOPIC_WC = "com/day/cq/workflow/job/*";

    /** The event property holding the {@link WorkflowJob}. */
	public static final String WORKFLOW_JOB = "com.day.cq.workflow.job";

    public static final String WORKFLOW_JOB_ID = "com.day.cq.workflow.jobid";

    /** The serialized {@link WorkItem} {@link Map} of the job. */
	protected Map item;

    /** Creates a new WorkflowJob. */
	public WorkflowJob(Map item) {
		if (item == null) {
			throw new IllegalArgumentException("Resource must not be null.");
		}
		this.item = item;
	}

	/** Returns the {@link WorkItem} {@link Map}of the job */
	public Map getWorkItemMap() {
		return item;
	}

	/** Convenience method to create a job event for the workflow job. */
	public Event createJobEvent(Integer retryCount, int numOfParallelProcs,
                                String jobId) {
		final Dictionary props = new Hashtable();
		props.put(WORKFLOW_JOB, this);
		props.put(EventUtil.PROPERTY_JOB_RETRIES, retryCount);
        if (item.get("workflowModelId") != null) {
        	String workflowModelId = (String)item.get("workflowModelId");
        	//replace colon, see http://bugs.day.com/bugzilla/show_bug.cgi?id=31340
        	workflowModelId = workflowModelId.replace(":", "_");
            props.put(EventUtil.PROPERTY_JOB_TOPIC, JOB_TOPIC + workflowModelId);
        } else {
            props.put(EventUtil.PROPERTY_JOB_TOPIC, JOB_TOPIC);
        }

        props.put(WORKFLOW_JOB_ID, jobId);

        return new Event(EventUtil.TOPIC_JOB, props);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy