/**
 * IJobExecutor.java
 * Created on Jun 5, 2008
 * (C) Copyright TANDBERG Television Ltd.
 */
package com.tandbergtv.watchpoint.pmm.job.execution;

import java.util.Map;

/**
 * This interface represents a class which is responsible for
 * initiating a task (could be a work order, could be sending an email)  
 * 
 * @author spuranik
 */
public interface IJobExecutor {

	/**
	 * execute the task using the info required.
	 * 
	 * @param info
	 * 	any info that might be required for the task initiation
	 */
	public void execute(Map<String, Object> info);
}
