-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDataConstants.java
52 lines (43 loc) · 2.63 KB
/
DataConstants.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
/**
* @author Andrew Chisolm, Bryan Munoz, Matt Olson, Daniel Ruiz, Jaden Arnold
* List of constants
*/
public abstract class DataConstants {
protected static final String ACCOUNT_FILE_NAME = "json/accounts.json";
protected static final String ACCOUNT_USERNAME = "username";
protected static final String ACCOUNT_PASSWORD = "password";
protected static final String ACCOUNT_USERS = "users";
protected static final String USER_FILE_NAME = "json/users.json";
protected static final String USER_ID = "id";
protected static final String USER_FIRST_NAME = "firstName";
protected static final String USER_LAST_NAME = "lastName";
protected static final String USER_PHONE = "phone";
protected static final String USER_EMAIL = "email";
protected static final String USER_CAMPER_LIST = "campers";
protected static final String USER_COUNSELOR_LIST = "counselors";
protected static final String USER_DIRECTOR_LIST = "directors";
protected static final String ATTENDEE_BIRTHDATE = "birthdate";
protected static final String ATTENDEE_ADDRESS = "address";
protected static final String ATTENDEE_GUARDIAN_NAME = "guardianName";
protected static final String ATTENDEE_PEDIATRIC_CARE = "pediatricCareCenter";
protected static final String ATTENDEE_PEDIATRITIAN_NAME = "pediatritianName";
protected static final String ATTENDEE_PEDIATRITIAN_PHONE = "pediatritianPhone";
protected static final String ATTENDEE_EMERGENCY_CONTACT_NAME = "emergencyContactName";
protected static final String ATTENDEE_EMERGENCY_CONTACT_NAME_2 = "emergencyContactName2";
protected static final String ATTENDEE_EMERGENCY_CONTACT_PHONE = "emergencyContactPhone";
protected static final String ATTENDEE_EMERGENCY_CONTACT_PHONE_2 = "emergencyContactPhone2";
protected static final String ATTENDEE_ALLERGIES = "allergies";
protected static final String ATTENDEE_DIETS = "diets";
protected static final String CAMPER_STRIKES = "strikes";
protected static final String COUNSELOR_BIO = "bio";
protected static final String SESSION_FILE_NAME = "json/sessions.json";
protected static final String SESSION_WEEK = "week";
protected static final String SESSION_THEME = "theme";
protected static final String SESSION_CABINS = "cabins";
protected static final String CABIN_NUM = "cabinNum";
protected static final String CABIN_COUNSELOR = "counselor";
protected static final String CABIN_CAMPERS = "campers";
protected static final String CABIN_SCHEDULE = "schedule";
protected static final String SCHEDULE_DAY = "day";
protected static final String SCHEDULE_ACTIVITIES = "activities";
}