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