View Javadoc
1   package org.kuali.ole.deliver.bo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   
5   /**
6    * OleStatisticalCategoryBo provides OleStatisticalCategoryBo information through getter and setter.
7    */
8   public class OleStatisticalCategoryBo extends PersistableBusinessObjectBase {
9   
10      private String oleStatisticalCategoryId;
11      private String oleStatisticalCategoryCode;
12      private String oleStatisticalCategoryName;
13      private String oleStatisticalCategoryDesc;
14      private boolean active;
15  
16      /**
17       * Gets the value of oleStatisticalCategoryId property
18       *
19       * @return oleStatisticalCategoryId
20       */
21      public String getOleStatisticalCategoryId() {
22          return oleStatisticalCategoryId;
23      }
24  
25      /**
26       * Sets the value for oleStatisticalCategoryId property
27       *
28       * @param oleStatisticalCategoryId
29       */
30      public void setOleStatisticalCategoryId(String oleStatisticalCategoryId) {
31          this.oleStatisticalCategoryId = oleStatisticalCategoryId;
32      }
33  
34      /**
35       * Gets the value of oleStatisticalCategoryCode property
36       *
37       * @return oleStatisticalCategoryCode
38       */
39      public String getOleStatisticalCategoryCode() {
40          return oleStatisticalCategoryCode;
41      }
42  
43      /**
44       * Sets the value for oleStatisticalCategoryCode property
45       *
46       * @param oleStatisticalCategoryCode
47       */
48      public void setOleStatisticalCategoryCode(String oleStatisticalCategoryCode) {
49          this.oleStatisticalCategoryCode = oleStatisticalCategoryCode;
50      }
51  
52      /**
53       * Gets the value of oleStatisticalCategoryName property
54       *
55       * @return oleStatisticalCategoryName
56       */
57      public String getOleStatisticalCategoryName() {
58          return oleStatisticalCategoryName;
59      }
60  
61      /**
62       * Sets the value for oleStatisticalCategoryName property
63       *
64       * @param oleStatisticalCategoryName
65       */
66      public void setOleStatisticalCategoryName(String oleStatisticalCategoryName) {
67          this.oleStatisticalCategoryName = oleStatisticalCategoryName;
68      }
69  
70      /**
71       * Gets the value of oleStatisticalCategoryDesc property
72       *
73       * @return oleStatisticalCategoryDesc
74       */
75      public String getOleStatisticalCategoryDesc() {
76          return oleStatisticalCategoryDesc;
77      }
78  
79      /**
80       * Sets the value for oleStatisticalCategoryDesc property
81       *
82       * @param oleStatisticalCategoryDesc
83       */
84      public void setOleStatisticalCategoryDesc(String oleStatisticalCategoryDesc) {
85          this.oleStatisticalCategoryDesc = oleStatisticalCategoryDesc;
86      }
87  
88      /**
89       * Gets the value of active property
90       *
91       * @return active
92       */
93      public boolean isActive() {
94          return active;
95      }
96  
97      /**
98       * Sets the value for active property
99       *
100      * @param active
101      */
102     public void setActive(boolean active) {
103         this.active = active;
104     }
105 }