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    * OleAgreementMethod is business object class for Agreement Method Maintenance Document
9    */
10  public class OleAgreementMethod extends PersistableBusinessObjectBase {
11  
12      private String agreementMethodId;
13      private String agreementMethodName;
14      private String agreementMethodDesc;
15      private boolean active;
16  
17      /**
18       * Gets the agreementMethodId attribute.
19       *
20       * @return Returns the agreementMethodId
21       */
22      public String getAgreementMethodId() {
23          return agreementMethodId;
24      }
25  
26      /**
27       * Sets the agreementMethodId attribute value.
28       *
29       * @param agreementMethodId The agreementMethodId to set.
30       */
31      public void setAgreementMethodId(String agreementMethodId) {
32          this.agreementMethodId = agreementMethodId;
33      }
34  
35      /**
36       * Gets the agreementMethodName attribute.
37       *
38       * @return Returns the agreementMethodName
39       */
40      public String getAgreementMethodName() {
41          return agreementMethodName;
42      }
43  
44      /**
45       * Sets the agreementMethodName attribute value.
46       *
47       * @param agreementMethodName The agreementMethodName to set.
48       */
49      public void setAgreementMethodName(String agreementMethodName) {
50          this.agreementMethodName = agreementMethodName;
51      }
52  
53      /**
54       * Gets the agreementMethodDesc attribute value.
55       *
56       * @return agreementMethodDesc
57       */
58      public String getAgreementMethodDesc() {
59          return agreementMethodDesc;
60      }
61  
62      /**
63       * Sets the agreementMethodDesc attribute value.
64       *
65       * @param agreementMethodDesc
66       */
67      public void setAgreementMethodDesc(String agreementMethodDesc) {
68          this.agreementMethodDesc = agreementMethodDesc;
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("agreementMethodId", agreementMethodId);
97          toStringMap.put("agreementMethodName", agreementMethodName);
98          toStringMap.put("agreementMethodDesc", agreementMethodDesc);
99          toStringMap.put("active", active);
100         return toStringMap;
101     }
102 
103 }