-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSubscriptionDTO.java
72 lines (54 loc) · 1.65 KB
/
SubscriptionDTO.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
60
61
62
63
64
65
66
67
68
69
70
71
72
//Class: CST8288//
//Section: 033//
//Professor: Islam Gomaa//
//Assignment: Final Project//
//Date: 23/7/2024//
//Authors: Jake Elliott, Navjot Kaur, Heeseok Yang, Scott Valair//
package database;
import enums.CommunicationMethod;
public class SubscriptionDTO {
private String subscriptionId;
private String userId;
private String location;
private CommunicationMethod communicationMethod;
private String foodPreferences;
public SubscriptionDTO() {
}
public SubscriptionDTO(String subscriptionId, String userId, String location, CommunicationMethod communicationMethod, String foodPreferences) {
this.subscriptionId = subscriptionId;
this.userId = userId;
this.location = location;
this.communicationMethod = communicationMethod;
this.foodPreferences = foodPreferences;
}
public String getSubscriptionId() {
return subscriptionId;
}
public void setSubscriptionId(String subscriptionId) {
this.subscriptionId = subscriptionId;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getLocation() {
return location;
}
public void setLocation(String location) {
this.location = location;
}
public CommunicationMethod getCommunicationMethod() {
return communicationMethod;
}
public void setCommunicationMethod(CommunicationMethod communicationMethod) {
this.communicationMethod = communicationMethod;
}
public String getFoodPreferences() {
return foodPreferences;
}
public void setFoodPreferences(String foodPreferences) {
this.foodPreferences = foodPreferences;
}
}