/**
 * ITitleTemplateProvider.java
 * Created Apr 29, 2009
 * Copyright (c) Tandberg Television 2009
 */
package com.tandbergtv.watchpoint.pmm.title.template;

import java.util.Collection;

import com.tandbergtv.workflow.core.WorkflowTemplate;
import com.tandbergtv.workflow.core.service.Service;

/**
 * Provides a way to get title related templates
 * 
 * @author Sahil Verma
 */
public interface ITitleTemplateProvider extends Service {
	
	/**
	 * Returns the latest versions of all templates that perform operations on a title, such as
	 * ingest, transcode, distribution etc
	 * 
	 * @return a list of templates
	 */
	Collection<WorkflowTemplate> getTemplates();
}
