/**
 * INotificationGenerator.java
 * Created Jul 2, 2008
 * Copyright (c) TANDBERG Television 2007-2008
 */
package com.tandbergtv.watchpoint.pmm.schedule.notify;

import com.tandbergtv.watchpoint.pmm.entities.Schedule;

/**
 * Generates notifications for schedules
 * 
 * @author Sahil Verma
 */
public interface INotificationGenerator {
	
	/**
	 * Creates the notification for the specified schedule if it has any titles that are
	 * delayed
	 * 
	 * @param schedule
	 * @return
	 */
	Notification getNotification(Schedule schedule);
}
