View Javadoc
1   /*
2    * Copyright 2005 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  
17  package org.kuali.ole.coa.businessobject;
18  
19  import org.apache.log4j.Logger;
20  import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
21  
22  import java.math.BigDecimal;
23  
24  
25  /**
26   *
27   */
28  public class OleFundCodeAccountingLine extends PersistableBusinessObjectBase {
29  
30      private static final Logger LOG = Logger.getLogger(OleFundCodeAccountingLine.class);
31  
32      private String fundCodeAccountingLineId;
33  
34      private String fundCodeId;
35  
36      private String chartCode;
37  
38      private String accountNumber;
39  
40      private String subAccount;
41  
42      private String objectCode;
43  
44      private String subObject;
45  
46      private String project;
47  
48      private String orgRefId;
49  
50      private BigDecimal percentage;
51  
52      public static Logger getLog() {
53          return LOG;
54      }
55  
56      public String getFundCodeAccountingLineId() {
57          return fundCodeAccountingLineId;
58      }
59  
60      public void setFundCodeAccountingLineId(String fundCodeAccountingLineId) {
61          this.fundCodeAccountingLineId = fundCodeAccountingLineId;
62      }
63  
64      public String getFundCodeId() {
65          return fundCodeId;
66      }
67  
68      public void setFundCodeId(String fundCodeId) {
69          this.fundCodeId = fundCodeId;
70      }
71  
72      public String getChartCode() {
73          return chartCode;
74      }
75  
76      public void setChartCode(String chartCode) {
77          this.chartCode = chartCode;
78      }
79  
80      public String getAccountNumber() {
81          return accountNumber;
82      }
83  
84      public void setAccountNumber(String accountNumber) {
85          this.accountNumber = accountNumber;
86      }
87  
88      public String getSubAccount() {
89          return subAccount;
90      }
91  
92      public void setSubAccount(String subAccount) {
93          this.subAccount = subAccount;
94      }
95  
96      public String getObjectCode() {
97          return objectCode;
98      }
99  
100     public void setObjectCode(String objectCode) {
101         this.objectCode = objectCode;
102     }
103 
104     public String getSubObject() {
105         return subObject;
106     }
107 
108     public void setSubObject(String subObject) {
109         this.subObject = subObject;
110     }
111 
112     public String getProject() {
113         return project;
114     }
115 
116     public void setProject(String project) {
117         this.project = project;
118     }
119 
120     public String getOrgRefId() {
121         return orgRefId;
122     }
123 
124     public void setOrgRefId(String orgRefId) {
125         this.orgRefId = orgRefId;
126     }
127 
128     public BigDecimal getPercentage() {
129         return percentage;
130     }
131 
132     public void setPercentage(BigDecimal percentage) {
133         this.percentage = percentage;
134     }
135 }