/**
 * ISearchFieldDataProvider.java
 * Created May 20, 2008
 * Copyright (c) TANDBERG Television 2007-2008
 */
package com.tandbergtv.workflow.web.page;

import java.util.Map;

/**
 * Provides data for a search field that comprises multiple values which can only be determined
 * at run-time
 * 
 * @author Sahil Verma
 */
public interface ISearchFieldDataProvider {
	
	/**
	 * Returns the list of options
	 * 
	 * @return
	 */
	Map<String, String> getData(); 
}
