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