001 /*
002 * Copyright 2011 The Kuali Foundation.
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016 package org.kuali.kfs.module.ld.businessobject;
017
018 import java.math.BigDecimal;
019 import java.sql.Date;
020 import java.sql.Timestamp;
021
022 import org.kuali.kfs.coa.businessobject.AccountingPeriod;
023 import org.kuali.kfs.gl.businessobject.Transaction;
024 import org.kuali.kfs.sys.businessobject.OriginationCode;
025 import org.kuali.rice.kew.doctype.bo.DocumentTypeEBO;
026
027 /**
028 * Labor business object for Labor Transaction
029 */
030 public interface LaborTransaction extends Transaction {
031
032 public String getPositionNumber();
033
034 public Date getTransactionPostingDate();
035
036 public Date getPayPeriodEndDate();
037
038 public BigDecimal getTransactionTotalHours();
039
040 public Integer getPayrollEndDateFiscalYear();
041
042 public String getPayrollEndDateFiscalPeriodCode();
043
044 public String getFinancialDocumentApprovedCode();
045
046 public String getTransactionEntryOffsetCode();
047
048 public Timestamp getTransactionEntryProcessedTimestamp();
049
050 public String getEmplid();
051
052 public Integer getEmployeeRecord();
053
054 public String getEarnCode();
055
056 public String getPayGroup();
057
058 public String getSalaryAdministrationPlan();
059
060 public String getGrade();
061
062 public String getRunIdentifier();
063
064 public String getLaborLedgerOriginalChartOfAccountsCode();
065
066 public String getLaborLedgerOriginalAccountNumber();
067
068 public String getLaborLedgerOriginalSubAccountNumber();
069
070 public String getLaborLedgerOriginalFinancialObjectCode();
071
072 public String getLaborLedgerOriginalFinancialSubObjectCode();
073
074 public String getHrmsCompany();
075
076 public String getSetid();
077
078 public DocumentTypeEBO getReferenceFinancialSystemDocumentTypeCode();
079
080 public OriginationCode getReferenceFinancialSystemOrigination();
081
082 public AccountingPeriod getPayrollEndDateFiscalPeriod();
083 }