View Javadoc

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