1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.r2.common.validator;
17
18 import java.util.List;
19
20 public class ConstraintMockAddress {
21
22 protected String line1;
23
24 protected String line2;
25
26 protected String city;
27
28 protected String state;
29
30 protected String country;
31
32 protected String stateCode;
33
34 protected String province;
35
36 protected List<String> phoneNumbers;
37
38 protected String type;
39
40 protected String id;
41
42 protected String postalCode;
43
44
45
46
47 public String getLine1() {
48 return line1;
49 }
50
51
52
53
54 public void setLine1(String line1) {
55 this.line1 = line1;
56 }
57
58
59
60
61 public String getLine2() {
62 return line2;
63 }
64
65
66
67
68 public void setLine2(String line2) {
69 this.line2 = line2;
70 }
71
72
73
74
75 public String getCity() {
76 return city;
77 }
78
79
80
81
82 public void setCity(String city) {
83 this.city = city;
84 }
85
86
87
88
89 public String getCountry() {
90 return country;
91 }
92
93
94
95
96 public void setCountry(String country) {
97 this.country = country;
98 }
99
100
101
102
103 public List<String> getPhoneNumbers() {
104 return phoneNumbers;
105 }
106
107
108
109
110 public void setPhoneNumbers(List<String> phoneNumbers) {
111 this.phoneNumbers = phoneNumbers;
112 }
113
114
115
116
117 public String getType() {
118 return type;
119 }
120
121
122
123
124 public void setType(String type) {
125 this.type = type;
126 }
127
128
129
130
131 public String getState() {
132 return state;
133 }
134
135
136
137
138 public void setState(String state) {
139 this.state = state;
140 }
141
142
143
144
145 public String getId() {
146 return id;
147 }
148
149
150
151
152 public void setId(String id) {
153 this.id = id;
154 }
155
156
157
158
159 public String getPostalCode() {
160 return postalCode;
161 }
162
163
164
165
166 public void setPostalCode(String postalCode) {
167 this.postalCode = postalCode;
168 }
169
170
171
172
173 public String getStateCode() {
174 return stateCode;
175 }
176
177
178
179
180 public void setStateCode(String stateCode) {
181 this.stateCode = stateCode;
182 }
183
184
185 public String getProvince() {
186 return province;
187 }
188
189 public void setProvince(String province) {
190 this.province = province;
191 }
192
193
194 }