01: /*
02: * Copyright 2006-2007 The Kuali Foundation.
03: *
04: * Licensed under the Educational Community License, Version 1.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.opensource.org/licenses/ecl1.php
09: *
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:
17: package org.kuali.module.purap.bo;
18:
19: import java.util.LinkedHashMap;
20:
21: import org.kuali.core.bo.PersistableBusinessObjectBase;
22:
23: /**
24: * Purchase Order Vendor Choice Business Object.
25: */
26: public class PurchaseOrderVendorChoice extends
27: PersistableBusinessObjectBase {
28:
29: private String purchaseOrderVendorChoiceCode;
30: private String purchaseOrderVendorChoiceDescription;
31: private boolean active;
32:
33: /**
34: * Default constructor.
35: */
36: public PurchaseOrderVendorChoice() {
37:
38: }
39:
40: public String getPurchaseOrderVendorChoiceCode() {
41: return purchaseOrderVendorChoiceCode;
42: }
43:
44: public void setPurchaseOrderVendorChoiceCode(
45: String purchaseOrderVendorChoiceCode) {
46: this .purchaseOrderVendorChoiceCode = purchaseOrderVendorChoiceCode;
47: }
48:
49: public String getPurchaseOrderVendorChoiceDescription() {
50: return purchaseOrderVendorChoiceDescription;
51: }
52:
53: public void setPurchaseOrderVendorChoiceDescription(
54: String purchaseOrderVendorChoiceDescription) {
55: this .purchaseOrderVendorChoiceDescription = purchaseOrderVendorChoiceDescription;
56: }
57:
58: public boolean isActive() {
59: return active;
60: }
61:
62: public void setActive(boolean active) {
63: this .active = active;
64: }
65:
66: /**
67: * @see org.kuali.core.bo.BusinessObjectBase#toStringMapper()
68: */
69: protected LinkedHashMap toStringMapper() {
70: LinkedHashMap m = new LinkedHashMap();
71: m.put("purchaseOrderVendorChoiceCode",
72: this.purchaseOrderVendorChoiceCode);
73: return m;
74: }
75:
76: }
|