View Javadoc

1   /**
2    * Copyright 2010 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
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  	 * @return the line1
46  	 */
47  	public String getLine1() {
48  		return line1;
49  	}
50  
51  	/**
52  	 * @param line1 the line1 to set
53  	 */
54  	public void setLine1(String line1) {
55  		this.line1 = line1;
56  	}
57  
58  	/**
59  	 * @return the line2
60  	 */
61  	public String getLine2() {
62  		return line2;
63  	}
64  
65  	/**
66  	 * @param line2 the line2 to set
67  	 */
68  	public void setLine2(String line2) {
69  		this.line2 = line2;
70  	}
71  
72  	/**
73  	 * @return the city
74  	 */
75  	public String getCity() {
76  		return city;
77  	}
78  
79  	/**
80  	 * @param city the city to set
81  	 */
82  	public void setCity(String city) {
83  		this.city = city;
84  	}
85  
86  	/**
87  	 * @return the country
88  	 */
89  	public String getCountry() {
90  		return country;
91  	}
92  
93  	/**
94  	 * @param country the country to set
95  	 */
96  	public void setCountry(String country) {
97  		this.country = country;
98  	}
99  
100 	/**
101 	 * @return the phoneNumbers
102 	 */
103 	public List<String> getPhoneNumbers() {
104 		return phoneNumbers;
105 	}
106 
107 	/**
108 	 * @param phoneNumbers the phoneNumbers to set
109 	 */
110 	public void setPhoneNumbers(List<String> phoneNumbers) {
111 		this.phoneNumbers = phoneNumbers;
112 	}
113 
114 	/**
115 	 * @return the type
116 	 */
117 	public String getType() {
118 		return type;
119 	}
120 
121 	/**
122 	 * @param type the type to set
123 	 */
124 	public void setType(String type) {
125 		this.type = type;
126 	}
127 
128 	/**
129 	 * @return the state
130 	 */
131 	public String getState() {
132 		return state;
133 	}
134 
135 	/**
136 	 * @param state 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 the id to set
151 	 */
152 	public void setId(String id) {
153 		this.id = id;
154 	}
155 
156 	/**
157 	 * @return the postalCode
158 	 */
159 	public String getPostalCode() {
160 		return postalCode;
161 	}
162 
163 	/**
164 	 * @param postalCode the postalCode to set
165 	 */
166 	public void setPostalCode(String postalCode) {
167 		this.postalCode = postalCode;
168 	}
169 
170 	/**
171 	 * @return the stateCode
172 	 */
173 	public String getStateCode() {
174 		return stateCode;
175 	}
176 
177 	/**
178 	 * @param stateCode the stateCode to set
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 }