01: /*
02: * Copyright 2007 The Kuali Foundation.
03: *
04: * Licensed under the Educational Community License, Version 1.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.opensource.org/licenses/ecl1.php
09: *
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.module.labor.bo;
17:
18: import java.math.BigDecimal;
19: import java.sql.Date;
20:
21: import org.kuali.core.bo.DocumentType;
22: import org.kuali.kfs.bo.OriginationCode;
23: import org.kuali.module.chart.bo.AccountingPeriod;
24: import org.kuali.module.gl.bo.Transaction;
25:
26: /**
27: * Labor business object for Labor Transaction
28: */
29: public interface LaborTransaction extends Transaction {
30:
31: public String getPositionNumber();
32:
33: public Date getTransactionPostingDate();
34:
35: public Date getPayPeriodEndDate();
36:
37: public BigDecimal getTransactionTotalHours();
38:
39: public Integer getPayrollEndDateFiscalYear();
40:
41: public String getPayrollEndDateFiscalPeriodCode();
42:
43: public String getFinancialDocumentApprovedCode();
44:
45: public String getTransactionEntryOffsetCode();
46:
47: public Date getTransactionEntryProcessedTimestamp();
48:
49: public String getEmplid();
50:
51: public Integer getEmployeeRecord();
52:
53: public String getEarnCode();
54:
55: public String getPayGroup();
56:
57: public String getSalaryAdministrationPlan();
58:
59: public String getGrade();
60:
61: public String getRunIdentifier();
62:
63: public String getLaborLedgerOriginalChartOfAccountsCode();
64:
65: public String getLaborLedgerOriginalAccountNumber();
66:
67: public String getLaborLedgerOriginalSubAccountNumber();
68:
69: public String getLaborLedgerOriginalFinancialObjectCode();
70:
71: public String getLaborLedgerOriginalFinancialSubObjectCode();
72:
73: public String getHrmsCompany();
74:
75: public String getSetid();
76:
77: public DocumentType getReferenceFinancialDocumentType();
78:
79: public OriginationCode getReferenceFinancialSystemOrigination();
80:
81: public AccountingPeriod getPayrollEndDateFiscalPeriod();
82: }
|