/**
 * TemplateEvents.java
 * Created Aug 11, 2009
 */
package com.tandbergtv.workflow.driver.template.event;

/**
 * Events that are generated during a template's lifetime
 * 
 * @author Sahil Verma
 */
public enum TemplateEvents {
	
	/**
	 * Process definition XML has been parsed
	 */
	COMPILED,
	
	/**
	 * Process definition is corrupt 
	 */
	COMPILE_ERROR,
	
	/**
	 * Created 
	 */
	CREATED,
	
	/**
	 * Modified
	 */
	UPDATED,
	
	/**
	 * Removed from the system
	 */
	DELETED,
	
	/**
	 * Added to template cache
	 */
	CACHED
}
