1 | |
package edu.sampleu.bookstore.bo; |
2 | |
|
3 | |
import org.kuali.rice.krad.bo.MutableInactivatable; |
4 | |
import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; |
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | 0 | public class AddressType extends PersistableBusinessObjectBase implements MutableInactivatable { |
11 | |
|
12 | |
private String type; |
13 | |
private String description; |
14 | 0 | private boolean active = true; |
15 | |
|
16 | |
|
17 | |
|
18 | |
private static final long serialVersionUID = 2789636716684794794L; |
19 | |
|
20 | |
|
21 | |
public String getType() { |
22 | 0 | return type; |
23 | |
} |
24 | |
|
25 | |
public void setType(String type) { |
26 | 0 | this.type = type; |
27 | 0 | } |
28 | |
|
29 | |
public String getDescription() { |
30 | 0 | return description; |
31 | |
} |
32 | |
|
33 | |
public void setDescription(String description) { |
34 | 0 | this.description = description; |
35 | 0 | } |
36 | |
|
37 | |
public boolean isActive() { |
38 | 0 | return active; |
39 | |
} |
40 | |
|
41 | |
public void setActive(boolean active) { |
42 | 0 | this.active = active; |
43 | 0 | } |
44 | |
|
45 | |
|
46 | |
} |