Newer
Older
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
package edu.ncsu.csc.itrust.beans;
/**
* Bean to be used for survey results (search). Stores address information about a HCP
* in addition to their specialty, hospital, and averages from survey (results range from 1-5). This
* beans also contains a variable that stores the percent of office visits that satisfaction results are
* available.
*/
public class SurveyResultBean {
private long hcpMID;
private String hcpFirstName;
private String hcpLastName;
private String hcpAddress1;
private String hcpAddress2;
private String hcpCity;
private String hcpState;
private String hcpZip;
private String hcpSpecialty;
private String hcpHospitalID;
private float avgWaitingRmMinutes;
private float avgExamRmMinutues;
private float avgVisitSatisfaction;
private float avgTreatmentSatisfaction;
private float percentSatResultsAvailable;
//list of specialties
public final static String GENERAL_SPECIALTY = "General";
public final static String SURGEON_SPECIALTY = "Surgeon";
public final static String HEART_SPECIALTY = "Heart Specialist";
public final static String PEDIATRICIAN_SPECIALTY = "Pediatrician";
public final static String OBGYN_SPECIALTY = "OB/GYN";
public final static String ANY_SPECIALTY = "None";
public void setHCPMID(long mid) {
hcpMID = mid;
}
public long getHCPMID() {
return hcpMID;
}
public void setHCPFirstName(String firstName) {
this.hcpFirstName = firstName;
}
public String getHCPFirstName() {
return hcpFirstName;
}
public void setHCPLastName(String lastName) {
this.hcpLastName = lastName;
}
public String getHCPLastName() {
return hcpLastName;
}
public void setHCPaddress1(String address1) {
this.hcpAddress1 = address1;
}
public String getHCPaddress1() {
return hcpAddress1;
}
public void setHCPaddress2(String address2) {
this.hcpAddress2 = address2;
}
public String getHCPaddress2() {
return hcpAddress2;
}
public void setHCPcity(String city) {
this.hcpCity = city;
}
public String getHCPcity() {
return hcpCity;
}
public void setHCPstate(String state) {
this.hcpState = state;
}
public String getHCPstate() {
return hcpState;
}
public void setHCPzip(String zip) {
this.hcpZip = zip;
}
public String getHCPzip() {
return hcpZip;
}
public void setHCPspecialty(String specialty) {
this.hcpSpecialty = specialty;
}
public String getHCPspecialty() {
return hcpSpecialty;
}
public void setHCPhospital(String hospital) {
this.hcpHospitalID = hospital;
}
public String getHCPhospital() {
return hcpHospitalID;
}
public void setAvgWaitingRoomMinutes(float waitingRoomMinutes) {
this.avgWaitingRmMinutes = waitingRoomMinutes;
}
public float getAvgWaitingRoomMinutes() {
return avgWaitingRmMinutes;
}
public void setAvgExamRoomMinutes(float examRoomMinutes) {
this.avgExamRmMinutues = examRoomMinutes;
}
public float getAvgExamRoomMinutes() {
return avgExamRmMinutues;
}
public void setAvgVisitSatisfaction(float visitSatisfaction) {
this.avgVisitSatisfaction = visitSatisfaction;
}
public float getAvgVisitSatisfaction() {
return avgVisitSatisfaction;
}
public void setAvgTreatmentSatisfaction(float treatmentSatisfaction) {
this.avgTreatmentSatisfaction = treatmentSatisfaction;
}
public float getAvgTreatmentSatisfaction() {
return avgTreatmentSatisfaction;
}
public void setPercentSatisfactionResults (float percent) {
this.percentSatResultsAvailable= percent;
}
public float getPercentSatisfactionResults() {
return percentSatResultsAvailable;
}
}