View Javadoc
1   /*
2    * Copyright 2011 The Kuali Foundation.
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.ole.select.businessobject;
17  
18  import org.kuali.rice.core.api.mo.common.active.MutableInactivatable;
19  import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
20  
21  import java.math.BigDecimal;
22  
23  public class OleReceiptStatus extends PersistableBusinessObjectBase implements MutableInactivatable {
24  
25      private BigDecimal receiptStatusId;
26      private String receiptStatusDocType;
27      private String receiptStatusCd;
28      private String receiptStatus;
29      private boolean active;
30  
31      /**
32       * Gets the value of the receiptStatusId property
33       *
34       * @return receiptStatusId
35       */
36      public BigDecimal getReceiptStatusId() {
37          return receiptStatusId;
38      }
39  
40      /**
41       * Sets the receiptStatusId value
42       *
43       * @param receiptStatusId
44       */
45      public void setReceiptStatusId(BigDecimal receiptStatusId) {
46          this.receiptStatusId = receiptStatusId;
47      }
48  
49      /**
50       * Gets the value of the receiptStatus property
51       *
52       * @return receiptStatus
53       */
54      public String getReceiptStatus() {
55          return receiptStatus;
56      }
57  
58      /**
59       * Sets the receiptStatus value
60       *
61       * @param receiptStatus
62       */
63      public void setReceiptStatus(String receiptStatus) {
64          this.receiptStatus = receiptStatus;
65      }
66  
67      /**
68       * Gets the active attribute.
69       *
70       * @return Returns the active.
71       */
72      @Override
73      public boolean isActive() {
74          return active;
75      }
76  
77      /**
78       * Sets the active attribute value.
79       *
80       * @param active The active to set.
81       */
82      @Override
83      public void setActive(boolean active) {
84          this.active = active;
85      }
86  
87      /**
88       * Gets the receiptStatusCd attribute.
89       *
90       * @return Returns the receiptStatusCd.
91       */
92      public String getReceiptStatusCd() {
93          return receiptStatusCd;
94      }
95  
96      /**
97       * Sets the receiptStatusCd attribute value.
98       *
99       * @param receiptStatusCd The receiptStatusCd to set.
100      */
101     public void setReceiptStatusCd(String receiptStatusCd) {
102         this.receiptStatusCd = receiptStatusCd;
103     }
104 
105     /**
106      * Gets the receiptStatusDocType attribute.
107      *
108      * @return Returns the receiptStatusDocType.
109      */
110     public String getReceiptStatusDocType() {
111         return receiptStatusDocType;
112     }
113 
114     /**
115      * Sets the receiptStatusDocType attribute value.
116      *
117      * @param receiptStatusDocType The receiptStatusDocType to set.
118      */
119     public void setReceiptStatusDocType(String receiptStatusDocType) {
120         this.receiptStatusDocType = receiptStatusDocType;
121     }
122 
123 }