/**
 * SchedulePersistenceService.java
 * Created Apr 23, 2008
 * Copyright (c) TANDBERG Television 2007-2008
 */
package com.tandbergtv.watchpoint.pmm.schedule;

import com.tandbergtv.watchpoint.pmm.assetlist.AssetListPersistenceService;
import com.tandbergtv.watchpoint.pmm.entities.Schedule;

/**
 * Default implementation of the schedule persistence service which persists
 * schedules to a datastore
 * 
 * @author Sahil Verma
 */
public class SchedulePersistenceService extends
		AssetListPersistenceService<Schedule> implements ISchedulePersistenceService {

	public SchedulePersistenceService() {
		super("Schedule Persistence");
	}

}
