-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBBStorageI.java
58 lines (31 loc) · 1.3 KB
/
BBStorageI.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package bbtrial.nl.logicgate.ace;
import java.util.List;
/**
* BBStorageI objects contain the information about BriefBot's working storage
* Normally this will be a database
* @author skmedlock
*
*/
public interface BBStorageI {
public RCalendar getLastCheckDate();
// public void addExcluded(List<Patient> p);
public List<Patient> getActivePatients();
public List<Patient> noShow(List<Patient> noShows, List<Patient> patients);
public void addDuplicate(Patient p, String dbidMatch);
public void finish(List<Patient> finished);
public void setLastCheckDate(RCalendar checkDate);
public void reminderDates(List<Patient> todaysPatients);
public void doNotRemind(List<Patient> noReminder);
public List<Patient> getIncomplete();
public void noteAbandonedLetter(List<Patient> incomplete);
public void changeStatusToActive(List<Patient> makeActive);
public boolean openConnection();
public boolean close();
public int getMaxDaysIncomplete();
public List<Patient> mergeNewPatients(List<Patient> newPatients);
public List<Patient> getAllPatients();
public void rescheduled(RCalendar visitDate, Patient sp);
public void cleanup();
//this will either contain basic login information for the DB,
//or specific queries for this DB
}