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