View Javadoc
1   package org.kuali.ole.select.bo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   
5   import java.util.LinkedHashMap;
6   
7   /**
8    * OleAgreementStatus is business object class for Agreement Status Maintenance Document
9    */
10  public class OleAgreementStatus extends PersistableBusinessObjectBase {
11  
12      private String agreementStatusId;
13      private String agreementStatusName;
14      private String agreementStatusDesc;
15      private boolean active;
16  
17      /**
18       * Gets the agreementStatusId attribute.
19       *
20       * @return Returns the agreementStatusId
21       */
22      public String getAgreementStatusId() {
23          return agreementStatusId;
24      }
25  
26      /**
27       * Sets the agreementStatusId attribute value.
28       *
29       * @param agreementStatusId The agreementStatusId to set.
30       */
31      public void setAgreementStatusId(String agreementStatusId) {
32          this.agreementStatusId = agreementStatusId;
33      }
34  
35      /**
36       * Gets the agreementStatusName attribute.
37       *
38       * @return Returns the agreementStatusName
39       */
40      public String getAgreementStatusName() {
41          return agreementStatusName;
42      }
43  
44      /**
45       * Sets the agreementStatusName attribute value.
46       *
47       * @param agreementStatusName The agreementStatusName to set.
48       */
49      public void setAgreementStatusName(String agreementStatusName) {
50          this.agreementStatusName = agreementStatusName;
51      }
52  
53      /**
54       * Gets the agreementStatusDesc attribute
55       *
56       * @return Returns the agreementStatusDesc
57       */
58      public String getAgreementStatusDesc() {
59          return agreementStatusDesc;
60      }
61  
62      /**
63       * Sets the agreementStatusDesc attribute value
64       *
65       * @param agreementStatusDesc The agreementStatusDesc to set
66       */
67      public void setAgreementStatusDesc(String agreementStatusDesc) {
68          this.agreementStatusDesc = agreementStatusDesc;
69      }
70  
71      /**
72       * Gets the active attribute.
73       *
74       * @return Returns the active
75       */
76      public boolean isActive() {
77          return active;
78      }
79  
80      /**
81       * Sets the active attribute value.
82       *
83       * @param active The active to set.
84       */
85      public void setActive(boolean active) {
86          this.active = active;
87      }
88  
89      /**
90       * Gets the toStringMap attribute.
91       *
92       * @return Returns the toStringMap
93       */
94      protected LinkedHashMap toStringMapper() {
95          LinkedHashMap toStringMap = new LinkedHashMap();
96          toStringMap.put("agreementStatusId", agreementStatusId);
97          toStringMap.put("agreementStatusName", agreementStatusName);
98          toStringMap.put("agreementStatusDesc", agreementStatusDesc);
99          toStringMap.put("active", active);
100         return toStringMap;
101     }
102 
103 }