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.bo.PersistableBusinessObjectBase; |
20 | |
|
21 | |
|
22 | |
|
23 | |
|
24 | |
|
25 | |
|
26 | |
public class AddressType extends PersistableBusinessObjectBase implements MutableInactivatable { |
27 | |
|
28 | |
private String vendorAddressTypeCode; |
29 | |
private String vendorAddressTypeDescription; |
30 | |
private boolean vendorDefaultIndicator; |
31 | |
private boolean active; |
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
public AddressType() { |
37 | 0 | super(); |
38 | 0 | } |
39 | |
|
40 | |
public String getVendorAddressTypeCode() { |
41 | |
|
42 | 0 | return vendorAddressTypeCode; |
43 | |
} |
44 | |
|
45 | |
public void setVendorAddressTypeCode(String vendorAddressTypeCode) { |
46 | 0 | this.vendorAddressTypeCode = vendorAddressTypeCode; |
47 | 0 | } |
48 | |
|
49 | |
public String getVendorAddressTypeDescription() { |
50 | |
|
51 | 0 | return vendorAddressTypeDescription; |
52 | |
} |
53 | |
|
54 | |
public void setVendorAddressTypeDescription(String vendorAddressTypeDescription) { |
55 | 0 | this.vendorAddressTypeDescription = vendorAddressTypeDescription; |
56 | 0 | } |
57 | |
|
58 | |
public boolean getVendorDefaultIndicator() { |
59 | |
|
60 | 0 | return vendorDefaultIndicator; |
61 | |
} |
62 | |
|
63 | |
public void setVendorDefaultIndicator(boolean vendorDefaultIndicator) { |
64 | 0 | this.vendorDefaultIndicator = vendorDefaultIndicator; |
65 | 0 | } |
66 | |
|
67 | |
public boolean isActive() { |
68 | 0 | return active; |
69 | |
} |
70 | |
|
71 | |
public void setActive(boolean active) { |
72 | 0 | this.active = active; |
73 | 0 | } |
74 | |
} |