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 java.util.LinkedHashMap; |
20 | |
|
21 | |
import org.kuali.rice.kns.bo.Inactivateable; |
22 | |
import org.kuali.rice.kns.document.DocumentBase; |
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
public class OwnershipType extends DocumentBase implements Inactivateable { |
31 | |
|
32 | |
protected String vendorOwnershipCode; |
33 | |
protected String vendorOwnershipDescription; |
34 | |
protected boolean vendorOwnershipCategoryAllowedIndicator; |
35 | |
protected boolean active; |
36 | |
|
37 | |
|
38 | |
|
39 | |
|
40 | |
public OwnershipType() { |
41 | 0 | super(); |
42 | 0 | } |
43 | |
|
44 | |
public String getVendorOwnershipCode() { |
45 | |
|
46 | 0 | return vendorOwnershipCode; |
47 | |
} |
48 | |
|
49 | |
public void setVendorOwnershipCode(String vendorOwnershipCode) { |
50 | 0 | this.vendorOwnershipCode = vendorOwnershipCode; |
51 | 0 | } |
52 | |
|
53 | |
public String getVendorOwnershipDescription() { |
54 | |
|
55 | 0 | return vendorOwnershipDescription; |
56 | |
} |
57 | |
|
58 | |
public void setVendorOwnershipDescription(String vendorOwnershipDescription) { |
59 | 0 | this.vendorOwnershipDescription = vendorOwnershipDescription; |
60 | 0 | } |
61 | |
|
62 | |
public boolean getVendorOwnershipCategoryAllowedIndicator() { |
63 | |
|
64 | 0 | return vendorOwnershipCategoryAllowedIndicator; |
65 | |
} |
66 | |
|
67 | |
public void setVendorOwnershipCategoryAllowedIndicator(boolean vendorOwnershipCategoryAllowedIndicator) { |
68 | 0 | this.vendorOwnershipCategoryAllowedIndicator = vendorOwnershipCategoryAllowedIndicator; |
69 | 0 | } |
70 | |
|
71 | |
public boolean isActive() { |
72 | 0 | return active; |
73 | |
} |
74 | |
|
75 | |
public void setActive(boolean active) { |
76 | 0 | this.active = active; |
77 | 0 | } |
78 | |
|
79 | |
} |