package com.tandbergtv.watchpoint.pmm.entities.event;

import com.tandbergtv.watchpoint.pmm.entities.Title;
import com.tandbergtv.workflow.core.event.WorkflowEvent;

/**
 * Event sent out whenever the title (including its metadata) is updated.
 * 
 * @author spuranik
 * 
 */
public class TitleUpdatedEvent extends WorkflowEvent {

	private Title title;

	public TitleUpdatedEvent(Object source, Title title) {
		super(source);
		this.title = title;
	}

	/**
	 * @return the title
	 */
	public Title getTitle() {
		return title;
	}
}
