/**
 * IContextManager.java
 * Created on May 16, 2008
 * (C) Copyright TANDBERG Television Ltd.
 */
package com.tandbergtv.watchpoint.pmm.util;

import com.tandbergtv.watchpoint.pmm.entities.Context;

/**
 * @author spuranik
 * Manages context info 
 */
public interface IContextManager {
	
	/**
	 * @param contextId
	 * contextId whose info is requested
	 * @return
	 * the complete context object for the given id
	 */
	public Context getContext(long contextId);

}
