1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.sampleu.financial.bo;
17
18 import org.kuali.rice.core.api.mo.common.active.MutableInactivatable;
19 import org.kuali.rice.krad.document.DocumentBase;
20
21
22
23
24
25 public class OwnershipType extends DocumentBase implements MutableInactivatable {
26
27 protected String vendorOwnershipCode;
28 protected String vendorOwnershipDescription;
29 protected boolean vendorOwnershipCategoryAllowedIndicator;
30 protected boolean active;
31
32
33
34
35 public OwnershipType() {
36 super();
37 }
38
39 public String getVendorOwnershipCode() {
40
41 return vendorOwnershipCode;
42 }
43
44 public void setVendorOwnershipCode(String vendorOwnershipCode) {
45 this.vendorOwnershipCode = vendorOwnershipCode;
46 }
47
48 public String getVendorOwnershipDescription() {
49
50 return vendorOwnershipDescription;
51 }
52
53 public void setVendorOwnershipDescription(String vendorOwnershipDescription) {
54 this.vendorOwnershipDescription = vendorOwnershipDescription;
55 }
56
57 public boolean getVendorOwnershipCategoryAllowedIndicator() {
58
59 return vendorOwnershipCategoryAllowedIndicator;
60 }
61
62 public void setVendorOwnershipCategoryAllowedIndicator(boolean vendorOwnershipCategoryAllowedIndicator) {
63 this.vendorOwnershipCategoryAllowedIndicator = vendorOwnershipCategoryAllowedIndicator;
64 }
65
66 public boolean isActive() {
67 return active;
68 }
69
70 public void setActive(boolean active) {
71 this.active = active;
72 }
73
74 }