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