1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.kuali.ole.module.purap.businessobject;
18
19 import org.kuali.rice.core.api.mo.common.active.MutableInactivatable;
20 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
21
22 import java.util.LinkedHashMap;
23
24
25
26
27 public class PurchaseOrderVendorChoice extends PersistableBusinessObjectBase implements MutableInactivatable {
28
29 private String purchaseOrderVendorChoiceCode;
30 private String purchaseOrderVendorChoiceDescription;
31 private boolean active;
32
33
34
35
36 public PurchaseOrderVendorChoice() {
37
38 }
39
40 public String getPurchaseOrderVendorChoiceCode() {
41 return purchaseOrderVendorChoiceCode;
42 }
43
44 public void setPurchaseOrderVendorChoiceCode(String purchaseOrderVendorChoiceCode) {
45 this.purchaseOrderVendorChoiceCode = purchaseOrderVendorChoiceCode;
46 }
47
48 public String getPurchaseOrderVendorChoiceDescription() {
49 return purchaseOrderVendorChoiceDescription;
50 }
51
52 public void setPurchaseOrderVendorChoiceDescription(String purchaseOrderVendorChoiceDescription) {
53 this.purchaseOrderVendorChoiceDescription = purchaseOrderVendorChoiceDescription;
54 }
55
56 public boolean isActive() {
57 return active;
58 }
59
60 public void setActive(boolean active) {
61 this.active = active;
62 }
63
64
65
66
67 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
68 LinkedHashMap m = new LinkedHashMap();
69 m.put("purchaseOrderVendorChoiceCode", this.purchaseOrderVendorChoiceCode);
70 return m;
71 }
72
73 }