1 /*
2 * Copyright 2011 The Kuali Foundation.
3 *
4 * Licensed under the Educational Community License, Version 1.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.opensource.org/licenses/ecl1.php
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.kuali.ole.vnd.businessobject;
17
18 import java.util.Date;
19
20 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
21
22 public class DebarredVendorDetail extends PersistableBusinessObjectBase {
23 private int debarredVendorId;
24 private Date loadDate;
25 private String name;
26 private String address1;
27 private String address2;
28 private String city;
29 private String state;
30 private String province;
31 private String zip;
32 private String aliases;
33 private String description;
34
35 /**
36 * Gets the debarredVendorId attribute.
37 * @return Returns the debarredVendorId.
38 */
39 public int getDebarredVendorId() {
40 return debarredVendorId;
41 }
42
43 /**
44 * Sets the debarredVendorId attribute value.
45 * @param debarredVendorId The debarredVendorId to set.
46 */
47 public void setDebarredVendorId(int debarredVendorId) {
48 this.debarredVendorId = debarredVendorId;
49 }
50
51 /**
52 * Gets the loadDate attribute.
53 * @return Returns the loadDate.
54 */
55 public Date getLoadDate() {
56 return loadDate;
57 }
58
59 /**
60 * Sets the loadDate attribute value.
61 * @param loadDate The loadDate to set.
62 */
63 public void setLoadDate(Date loadDate) {
64 this.loadDate = loadDate;
65 }
66
67 /**
68 * Gets the name attribute.
69 * @return Returns the name.
70 */
71 public String getName() {
72 return name;
73 }
74
75 /**
76 * Sets the name attribute value.
77 * @param name The name to set.
78 */
79 public void setName(String name) {
80 this.name = name;
81 }
82
83 /**
84 * Gets the address1 attribute.
85 * @return Returns the address1.
86 */
87 public String getAddress1() {
88 return address1;
89 }
90
91 /**
92 * Sets the address1 attribute value.
93 * @param address1 The address1 to set.
94 */
95 public void setAddress1(String address1) {
96 this.address1 = address1;
97 }
98
99 /**
100 * Gets the address2 attribute.
101 * @return Returns the address2.
102 */
103 public String getAddress2() {
104 return address2;
105 }
106
107 /**
108 * Sets the address2 attribute value.
109 * @param address2 The address2 to set.
110 */
111 public void setAddress2(String address2) {
112 this.address2 = address2;
113 }
114
115 /**
116 * Gets the city attribute.
117 * @return Returns the city.
118 */
119 public String getCity() {
120 return city;
121 }
122
123 /**
124 * Sets the city attribute value.
125 * @param city The city to set.
126 */
127 public void setCity(String city) {
128 this.city = city;
129 }
130
131 /**
132 * Gets the stateOrCountry attribute.
133 * @return Returns the stateOrCountry.
134 */
135 public String getState() {
136 return state;
137 }
138
139 /**
140 * Sets the stateOrCountry attribute value.
141 * @param stateOrCountry The stateOrCountry to set.
142 */
143 public void setState(String state) {
144 this.state = state;
145 }
146
147 /**
148 * Gets the province attribute.
149 * @return Returns the province.
150 */
151 public String getProvince() {
152 return province;
153 }
154
155 /**
156 * Sets the province attribute value.
157 * @param country The province to set.
158 */
159 public void setProvince(String province) {
160 this.province = province;
161 }
162
163 /**
164 * Gets the zip attribute.
165 * @return Returns the zip.
166 */
167 public String getZip() {
168 return zip;
169 }
170
171 /**
172 * Sets the zip attribute value.
173 * @param zip The zip to set.
174 */
175 public void setZip(String zip) {
176 this.zip = zip;
177 }
178
179 /**
180 * Gets the alias attribute.
181 * @return Returns the alias.
182 */
183 public String getAliases() {
184 return aliases;
185 }
186
187 /**
188 * Sets the alias attribute value.
189 * @param alias The alias to set.
190 */
191 public void setAliases(String aliases) {
192 this.aliases = aliases;
193 }
194
195 /**
196 * Gets the description attribute.
197 * @return Returns the description.
198 */
199 public String getDescription() {
200 return description;
201 }
202
203 /**
204 * Sets the description attribute value.
205 * @param description The description to set.
206 */
207 public void setDescription(String description) {
208 this.description = description;
209 }
210 }