1 package org.kuali.student.core.assembly.data;
2
3 import java.util.List;
4 import java.util.Map;
5
6 public class MockAddress {
7 protected String line1;
8
9 protected String line2;
10
11 protected String city;
12
13 protected String state;
14
15 protected String country;
16
17 protected String stateCode;
18
19 protected List<String> phoneNumbers;
20
21 protected String type;
22
23 protected String id;
24
25 protected String postalCode;
26
27 protected Map<String,String> attributes;
28
29 public Map<String, String> getAttributes() {
30 return attributes;
31 }
32
33 public void setAttributes(Map<String, String> attributes) {
34 this.attributes = attributes;
35 }
36
37
38
39
40 public String getLine1() {
41 return line1;
42 }
43
44
45
46
47
48 public void setLine1(String line1) {
49 this.line1 = line1;
50 }
51
52
53
54
55 public String getLine2() {
56 return line2;
57 }
58
59
60
61
62
63 public void setLine2(String line2) {
64 this.line2 = line2;
65 }
66
67
68
69
70 public String getCity() {
71 return city;
72 }
73
74
75
76
77
78 public void setCity(String city) {
79 this.city = city;
80 }
81
82
83
84
85 public String getCountry() {
86 return country;
87 }
88
89
90
91
92
93 public void setCountry(String country) {
94 this.country = country;
95 }
96
97
98
99
100 public List<String> getPhoneNumbers() {
101 return phoneNumbers;
102 }
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
123 public void setType(String type) {
124 this.type = type;
125 }
126
127
128
129
130 public String getState() {
131 return state;
132 }
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
153 public void setId(String id) {
154 this.id = id;
155 }
156
157
158
159
160 public String getPostalCode() {
161 return postalCode;
162 }
163
164
165
166
167
168 public void setPostalCode(String postalCode) {
169 this.postalCode = postalCode;
170 }
171
172
173
174
175 public String getStateCode() {
176 return stateCode;
177 }
178
179
180
181
182
183 public void setStateCode(String stateCode) {
184 this.stateCode = stateCode;
185 }
186
187 }