View Javadoc
1   /*
2    * The Kuali Financial System, a comprehensive financial management system for higher education.
3    * 
4    * Copyright 2005-2014 The Kuali Foundation
5    * 
6    * This program is free software: you can redistribute it and/or modify
7    * it under the terms of the GNU Affero General Public License as
8    * published by the Free Software Foundation, either version 3 of the
9    * License, or (at your option) any later version.
10   * 
11   * This program is distributed in the hope that it will be useful,
12   * but WITHOUT ANY WARRANTY; without even the implied warranty of
13   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   * GNU Affero General Public License for more details.
15   * 
16   * You should have received a copy of the GNU Affero General Public License
17   * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18   */
19  package org.kuali.kfs.vnd.businessobject;
20  
21  import java.util.Date;
22  
23  import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
24  
25  public class DebarredVendorDetail extends PersistableBusinessObjectBase {
26      private int debarredVendorId;
27      private Date loadDate;
28      private String name;
29      private String address1;
30      private String address2;
31      private String city;
32      private String state;
33      private String province;
34      private String zip;
35      private String aliases;
36      private String description;
37  
38      /**
39       * Gets the debarredVendorId attribute.
40       * @return Returns the debarredVendorId.
41       */
42      public int getDebarredVendorId() {
43          return debarredVendorId;
44      }
45  
46      /**
47       * Sets the debarredVendorId attribute value.
48       * @param debarredVendorId The debarredVendorId to set.
49       */
50      public void setDebarredVendorId(int debarredVendorId) {
51          this.debarredVendorId = debarredVendorId;
52      }
53  
54      /**
55       * Gets the loadDate attribute.
56       * @return Returns the loadDate.
57       */
58      public Date getLoadDate() {
59          return loadDate;
60      }
61  
62      /**
63       * Sets the loadDate attribute value.
64       * @param loadDate The loadDate to set.
65       */
66      public void setLoadDate(Date loadDate) {
67          this.loadDate = loadDate;
68      }
69  
70      /**
71       * Gets the name attribute.
72       * @return Returns the name.
73       */
74      public String getName() {
75          return name;
76      }
77  
78      /**
79       * Sets the name attribute value.
80       * @param name The name to set.
81       */
82      public void setName(String name) {
83          this.name = name;
84      }
85  
86      /**
87       * Gets the address1 attribute.
88       * @return Returns the address1.
89       */
90      public String getAddress1() {
91          return address1;
92      }
93  
94      /**
95       * Sets the address1 attribute value.
96       * @param address1 The address1 to set.
97       */
98      public void setAddress1(String address1) {
99          this.address1 = address1;
100     }
101 
102     /**
103      * Gets the address2 attribute.
104      * @return Returns the address2.
105      */
106     public String getAddress2() {
107         return address2;
108     }
109 
110     /**
111      * Sets the address2 attribute value.
112      * @param address2 The address2 to set.
113      */
114     public void setAddress2(String address2) {
115         this.address2 = address2;
116     }
117 
118     /**
119      * Gets the city attribute.
120      * @return Returns the city.
121      */
122     public String getCity() {
123         return city;
124     }
125 
126     /**
127      * Sets the city attribute value.
128      * @param city The city to set.
129      */
130     public void setCity(String city) {
131         this.city = city;
132     }
133 
134     /**
135      * Gets the stateOrCountry attribute.
136      * @return Returns the stateOrCountry.
137      */
138     public String getState() {
139         return state;
140     }
141 
142     /**
143      * Sets the stateOrCountry attribute value.
144      * @param stateOrCountry The stateOrCountry to set.
145      */
146     public void setState(String state) {
147         this.state = state;
148     }
149 
150     /**
151      * Gets the province attribute.
152      * @return Returns the province.
153      */
154     public String getProvince() {
155         return province;
156     }
157 
158     /**
159      * Sets the province attribute value.
160      * @param country The province to set.
161      */
162     public void setProvince(String province) {
163         this.province = province;
164     }
165 
166     /**
167      * Gets the zip attribute.
168      * @return Returns the zip.
169      */
170     public String getZip() {
171         return zip;
172     }
173 
174     /**
175      * Sets the zip attribute value.
176      * @param zip The zip to set.
177      */
178     public void setZip(String zip) {
179         this.zip = zip;
180     }
181 
182     /**
183      * Gets the alias attribute.
184      * @return Returns the alias.
185      */
186     public String getAliases() {
187         return aliases;
188     }
189 
190     /**
191      * Sets the alias attribute value.
192      * @param alias The alias to set.
193      */
194     public void setAliases(String aliases) {
195         this.aliases = aliases;
196     }
197 
198     /**
199      * Gets the description attribute.
200      * @return Returns the description.
201      */
202     public String getDescription() {
203         return description;
204     }
205 
206     /**
207      * Sets the description attribute value.
208      * @param description The description to set.
209      */
210     public void setDescription(String description) {
211         this.description = description;
212     }
213 }