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
package edu.ncsu.csc.itrust.beans;
/**
* Bean for required procedures.
* Holds data for all immunizations and procedures that are required
* in order for patients to enter into public schools, etc.
*/
public class RequiredProceduresBean {
/** Code for the procedure */
private String cptCode;
/** Description of the procedure */
private String description;
/** Age group that the procedure affects (kindergarten, sixth grade, or college age) */
private int ageGroup;
/** Type of procedure (ie: immunization) */
private String attribute;
/** Max age that the patient can be before the procedure is no longer required */
private int ageMax;
/**
* Construct a new, empty bean.
*/
public RequiredProceduresBean() {
}
/**
* Get the CPT code for the bean.
* @return CPT code
*/
public String getCptCode() {
return cptCode;
}
/**
* Set the CPT code for the bean.
* @param cptCode CPT code for the procedure
*/
public void setCptCode(String cptCode) {
this.cptCode = cptCode;
}
/**
* Get the description of the procedure for the bean.
* @return description of the procedure
*/
public String getDescription() {
return description;
}
/**
* Set the description of the procedure for the bean.
* @param description description of the procedure
*/
public void setDescription(String description) {
this.description = description;
}
/**
* Get the age group for the bean.
* @return age group (kindergarten, sixth grade, or college age)
*/
public int getAgeGroup() {
return ageGroup;
}
/**
* Set the age group for the bean.
* @param ageGroup 0 if kindergarten, 1 if sixth grade, or 2 if college age)
*/
public void setAgeGroup(int ageGroup) {
this.ageGroup = ageGroup;
}
/**
* Get the attribute for the bean.
* @return type of procedure
*/
public String getAttribute() {
return attribute;
}
/**
* Set the attribute for the bean.
* @param attribute type of procedure
*/
public void setAttribute(String attribute) {
this.attribute = attribute;
}
/**
* Get the max age for the bean.
* @return max age before procedure no longer required
*/
public int getAgeMax() {
return ageMax;
}
/**
* Set the max age for the bean.
* @param age max age before procedure no longer required
*/
public void setAgeMax(int age) {
this.ageMax = age;
}
}