-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDataConstants.java
59 lines (54 loc) · 3.1 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
53
54
55
56
57
58
59
public abstract class DataConstants {
protected static final String CAMPER_FILE = "json/camper.json";
protected static final String GENDER = "sex";
protected static final String ALLERGIES = "allergies";
protected static final String NAME = "name";
protected static final String MEDICATIONS = "medications";
protected static final String DOSAGE = "dosage";
protected static final String TYPE = "type";
protected static final String TIME = "time";
protected static final String CONTACTS = "contacts";
protected static final String CONT_RELATION_TO_PERSON = "relationToPerson";
protected static final String PEDIATRICIAN = "pediatrician";
protected static final String COUNSELOR_FILE = "json/counselor.json";
protected static final String EMAIL = "emailAddress";
protected static final String PHONE_NUM = "phoneNumber";
protected static final String CAMP_FILE = "json/camp.json";
protected static final String DESCRIPTION = "description";
protected static final String WEEK = "week";
protected static final String WEEK_NUM = "week_number";
protected static final String THEME = "theme";
protected static final String GROUPS = "groups";
protected static final String DAILY_ACTIVITIES = "daily_activities";
protected static final String LOCATION = "location";
protected static final String CAMPERS = "group_campers";
protected static final String COUNSELOR_ID = "counselorUUID";
protected static final String TEST = "Test";
protected static final String CAMP_NAME = "camp_name";
protected static final String DIRECTOR_FILE = "json/director.json";
protected static final String CALENDAR = "calendar";
protected static final String SELECTED_GROUPS = "group";
protected static final String ACTIVITY_LIST = "activity_list";
protected static final String CALENDAR_HASH = "calendar_hash";
protected static final String GROUP_ID = "group_UUID";
protected static final String GROUP_CAMPERS = "group_campers";
protected static final String WEEK_COUNSELORS = "week_counselors";
protected static final String WEEK_CAMPERS = "week_campers";
protected static final String START_DATE = "start_date";
protected static final String END_DATE = "end_date";
protected static final String ISFULL = "isFull";
protected static final String ALL_ACTIVITIES = "all_activities";
protected static final String GROUP_SCHEDULE = "group_schedule";
protected static final String DAY_OF_WEEK = "day_of_week";
protected static final String YEAR = "year";
protected static final String USER_FILE = "json/user.json";
protected static final String ID = "id";
protected static final String FIRSTNAME = "firstName";
protected static final String LASTNAME = "lastName";
protected static final String DOB = "dateOfBirth";
protected static final String HOMEADDRESS = "homeAddress";
protected static final String USERNAME = "username";
protected static final String PASSWORD = "password";
protected static final String USER_CAMPERS = "user_campers";
protected static final String CAMPER_ID = "camper_id";
}