View Javadoc
1   /*
2    * Copyright 2012 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.web.struts;
17  
18  import java.util.HashMap;
19  import java.util.Map;
20  
21  import org.kuali.rice.kns.web.struts.form.LookupForm;
22  
23  public class VendorExclusionForm extends LookupForm {
24      
25      private String confirmStatusCode;
26      private String debarredVendorId;
27      private String vendorExclusionStatus;
28      private String vendorType;
29      
30      /**
31       * Gets the confirmStatusCode attribute. 
32       * @return Returns the confirmStatusCode.
33       */
34      public String getConfirmStatusCode() {
35          return confirmStatusCode;
36      }
37  
38      /**
39       * Sets the confirmStatusCode attribute value.
40       * @param statusCode The statusCode to set.
41       */
42      public void setConfirmStatusCode(String confirmStatusCode) {
43          if (confirmStatusCode == null) {
44              this.confirmStatusCode = "";
45          } else {
46              this.confirmStatusCode = confirmStatusCode;
47          }
48      }
49  
50      /**
51       * Gets the debarredVendorId attribute. 
52       * @return Returns the debarredVendorId.
53       */
54      public String getDebarredVendorId() {
55          return debarredVendorId;
56      }
57  
58      /**
59       * Sets the debarredVendorId attribute value.
60       * @param debarredVendorId The debarredVendorId to set.
61       */
62      public void setDebarredVendorId(String debarredVendorId) {
63          this.debarredVendorId = debarredVendorId;
64      }
65  
66      /**
67       * Gets the vendorExclusionStatus attribute. 
68       * @return Returns the vendorExclusionStatus.
69       */
70      public String getVendorExclusionStatus() {
71          return vendorExclusionStatus;
72      }
73  
74      /**
75       * Sets the vendorExclusionStatus attribute value.
76       * @param vendorExclusionStatus The vendorExclusionStatus to set.
77       */
78      public void setVendorExclusionStatus(String vendorExclusionStatus) {
79          this.vendorExclusionStatus = vendorExclusionStatus;
80      }
81  
82      /**
83       * Gets the vendorType attribute. 
84       * @return Returns the vendorType.
85       */
86      public String getVendorType() {
87          return vendorType;
88      }
89  
90      /**
91       * Sets the vendorType attribute value.
92       * @param vendorType The vendorType to set.
93       */
94      public void setVendorType(String vendorType) {
95          this.vendorType = vendorType;
96      }
97  
98  }