1 package org.kuali.ole.agreement.bo;
2
3 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4
5 import java.util.LinkedHashMap;
6
7
8
9
10
11
12
13
14 public class OleAgreementStatus extends PersistableBusinessObjectBase {
15
16 private String agreementStatusId;
17 private String agreementStatusName;
18 private boolean active;
19
20
21
22
23
24 public String getAgreementStatusId() {
25 return agreementStatusId;
26 }
27
28
29
30
31
32 public void setAgreementStatusId(String agreementStatusId) {
33 this.agreementStatusId = agreementStatusId;
34 }
35
36
37
38
39
40 public String getAgreementStatusName() {
41 return agreementStatusName;
42 }
43
44
45
46
47
48 public void setAgreementStatusName(String agreementStatusName) {
49 this.agreementStatusName = agreementStatusName;
50 }
51
52
53
54
55
56 public boolean isActive() {
57 return active;
58 }
59
60
61
62
63
64 public void setActive(boolean active) {
65 this.active = active;
66 }
67
68
69
70
71
72 protected LinkedHashMap toStringMapper() {
73 LinkedHashMap toStringMap = new LinkedHashMap();
74 toStringMap.put("agreementStatusId", agreementStatusId);
75 toStringMap.put("agreementStatusName", agreementStatusName);
76 toStringMap.put("active", active);
77 return toStringMap;
78 }
79
80 }