/**
 * JobData.java
 * Created on Aug 12, 2008
 * (C) Copyright TANDBERG Television Ltd.
 */
package com.tandbergtv.watchpoint.pmm.job.referenceEvaluator;

import java.util.Date;

/**
 * This class holds any information that might be required to resolve items under the 'General'
 * category in job parameters.
 * 
 * @author spuranik
 * 
 */
public class JobData {

	// date when the job was executed. OR the date when the job was supposed to
	// run in case of a misfire for a trigger.
	private Date jobExecutionDate;

	/**
	 * @param jobExecutionDate
	 */
	public JobData(Date jobExecutionDate) {
		super();
		this.jobExecutionDate = jobExecutionDate;
	}

	/**
	 * @return the jobExecutionDate
	 */
	public Date getJobExecutionDate() {
		return jobExecutionDate;
	}

	/**
	 * @param jobExecutionDate
	 *            the jobExecutionDate to set
	 */
	public void setJobExecutionDate(Date jobExecutionDate) {
		this.jobExecutionDate = jobExecutionDate;
	}

}
