UNCCGameDay/src/com/uncc/gameday/alerts/AlertDB.java
bspeice caf9da1e58 Add the new AlertDB api
Yay for test-driven development!
2013-10-14 13:36:04 -04:00

33 lines
485 B
Java

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<Alert> alerts) {
}
public Alert fetch(Date d) {
return null;
}
public List<Alert> fetchMultiple(List<Date> dates) {
return null;
}
public List<Alert> fetchAll() {
return null;
}
}