/**
 * IAssetListTemplateProvider.java
 * Created Apr 29, 2009
 * Copyright (c) Tandberg Television 2009
 */
package com.tandbergtv.watchpoint.pmm.assetlist;

import java.util.Collection;

import com.tandbergtv.workflow.core.WorkflowTemplate;
import com.tandbergtv.workflow.core.service.Service;

/**
 * Provides a way to get assetlist related templates
 * 
 * @author spuranik
 */
public interface IAssetListTemplateProvider extends Service {
	
	/**
	 * Returns the latest versions of all templates that perform operations on an assetlist
	 * 
	 * @return a list of templates
	 */
	Collection<WorkflowTemplate> getTemplates();
}
