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.bo.PersistableBusinessObjectBase; |
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
public class ShippingPaymentTerms extends PersistableBusinessObjectBase implements Inactivateable { |
30 | |
|
31 | |
private String vendorShippingPaymentTermsCode; |
32 | |
private String vendorShippingPaymentTermsDescription; |
33 | |
private boolean vendorShippingPaymentTermsPayIndicator; |
34 | |
private boolean active; |
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | |
public ShippingPaymentTerms() { |
40 | 0 | super(); |
41 | 0 | } |
42 | |
|
43 | |
public String getVendorShippingPaymentTermsCode() { |
44 | |
|
45 | 0 | return vendorShippingPaymentTermsCode; |
46 | |
} |
47 | |
|
48 | |
public void setVendorShippingPaymentTermsCode(String vendorShippingPaymentTermsCode) { |
49 | 0 | this.vendorShippingPaymentTermsCode = vendorShippingPaymentTermsCode; |
50 | 0 | } |
51 | |
|
52 | |
public String getVendorShippingPaymentTermsDescription() { |
53 | |
|
54 | 0 | return vendorShippingPaymentTermsDescription; |
55 | |
} |
56 | |
|
57 | |
public void setVendorShippingPaymentTermsDescription(String vendorShippingPaymentTermsDescription) { |
58 | 0 | this.vendorShippingPaymentTermsDescription = vendorShippingPaymentTermsDescription; |
59 | 0 | } |
60 | |
|
61 | |
public boolean getVendorShippingPaymentTermsPayIndicator() { |
62 | |
|
63 | 0 | return vendorShippingPaymentTermsPayIndicator; |
64 | |
} |
65 | |
|
66 | |
public void setVendorShippingPaymentTermsPayIndicator(boolean vendorShippingPaymentTermsPayIndicator) { |
67 | 0 | this.vendorShippingPaymentTermsPayIndicator = vendorShippingPaymentTermsPayIndicator; |
68 | 0 | } |
69 | |
|
70 | |
public boolean isActive() { |
71 | |
|
72 | 0 | return active; |
73 | |
} |
74 | |
|
75 | |
public void setActive(boolean active) { |
76 | 0 | this.active = active; |
77 | 0 | } |
78 | |
} |