package com.uncc.gameday.alerts; import java.util.Date; import java.util.List; /* Responsible for handling persistence/fetching of alerts */ public class AlertDB { public void persist(Alert a) { } public void persistMultiple(List alerts) { } public Alert fetch(Date d) { return null; } public List fetchMultiple(List dates) { return null; } public List fetchAll() { return null; } }