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