001/*
002 * Copyright 2011 The Kuali Foundation.
003 *
004 * Licensed under the Educational Community License, Version 1.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl1.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.ole.vnd.businessobject;
017
018import java.util.Date;
019
020import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
021
022public class DebarredVendorDetail extends PersistableBusinessObjectBase {
023    private int debarredVendorId;
024    private Date loadDate;
025    private String name;
026    private String address1;
027    private String address2;
028    private String city;
029    private String state;
030    private String province;
031    private String zip;
032    private String aliases;
033    private String description;
034
035    /**
036     * Gets the debarredVendorId attribute.
037     * @return Returns the debarredVendorId.
038     */
039    public int getDebarredVendorId() {
040        return debarredVendorId;
041    }
042
043    /**
044     * Sets the debarredVendorId attribute value.
045     * @param debarredVendorId The debarredVendorId to set.
046     */
047    public void setDebarredVendorId(int debarredVendorId) {
048        this.debarredVendorId = debarredVendorId;
049    }
050
051    /**
052     * Gets the loadDate attribute.
053     * @return Returns the loadDate.
054     */
055    public Date getLoadDate() {
056        return loadDate;
057    }
058
059    /**
060     * Sets the loadDate attribute value.
061     * @param loadDate The loadDate to set.
062     */
063    public void setLoadDate(Date loadDate) {
064        this.loadDate = loadDate;
065    }
066
067    /**
068     * Gets the name attribute.
069     * @return Returns the name.
070     */
071    public String getName() {
072        return name;
073    }
074
075    /**
076     * Sets the name attribute value.
077     * @param name The name to set.
078     */
079    public void setName(String name) {
080        this.name = name;
081    }
082
083    /**
084     * Gets the address1 attribute.
085     * @return Returns the address1.
086     */
087    public String getAddress1() {
088        return address1;
089    }
090
091    /**
092     * Sets the address1 attribute value.
093     * @param address1 The address1 to set.
094     */
095    public void setAddress1(String address1) {
096        this.address1 = address1;
097    }
098
099    /**
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}