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.ec;
017    
018    import org.kuali.kfs.sys.KFSPropertyConstants;
019    
020    /**
021     * Constants that represent a property name in an effort reporting business object.
022     */
023    public class EffortPropertyConstants {
024        public static final String ACCOUNT_ACCOUNT_TYPE_CODE = KFSPropertyConstants.ACCOUNT + "." + KFSPropertyConstants.ACCOUNT_TYPE_CODE;
025        
026        public static final String EFFORT_CERTIFICATION_BUILD_NUMBER = "effortCertificationBuildNumber";
027        public static final String EFFORT_CERTIFICATION_CALCULATED_OVERALL_PERCENT = "effortCertificationCalculatedOverallPercent";
028        public static final String EFFORT_CERTIFICATION_DETAIL_LINE = "effortCertificationDetailLine";
029        public static final String EFFORT_CERTIFICATION_DETAIL_LINES = "effortCertificationDetailLines";
030        public static final String EFFORT_CERTIFICATION_DOCUMENT = "effortCertificationDocument";
031        public static final String EFFORT_CERTIFICATION_ORIGINAL_PAYROLL_AMOUNT = "effortCertificationOriginalPayrollAmount";
032        public static final String EFFORT_CERTIFICATION_PAYROLL_AMOUNT = "effortCertificationPayrollAmount";
033        public static final String EFFORT_CERTIFICATION_PERIOD_STATUS_CODE = "effortCertificationPeriodStatusCode";
034        public static final String EFFORT_CERTIFICATION_REPORT_BEGIN_FISCAL_YEAR = "effortCertificationReportBeginFiscalYear";
035        public static final String EFFORT_CERTIFICATION_REPORT_BEGIN_PERIOD_CODE = "effortCertificationReportBeginPeriodCode";
036        public static final String EFFORT_CERTIFICATION_REPORT_DEFINITION = "effortCertificationReportDefinition";
037        public static final String EFFORT_CERTIFICATION_REPORT_END_FISCAL_YEAR = "effortCertificationReportEndFiscalYear";
038        public static final String EFFORT_CERTIFICATION_REPORT_END_PERIOD_CODE = "effortCertificationReportEndPeriodCode";
039        public static final String EFFORT_CERTIFICATION_REPORT_NUMBER = "effortCertificationReportNumber";
040        public static final String EFFORT_CERTIFICATION_REPORT_PERIOD_STATUS_CODE = "effortCertificationReportPeriodStatusCode";
041        public static final String EFFORT_CERTIFICATION_REPORT_PERIOD_TITLE = "effortCertificationReportPeriodTitle";    
042        public static final String EFFORT_CERTIFICATION_REPORT_POSITIONS = "effortCertificationReportPositions";
043        public static final String EFFORT_CERTIFICATION_REPORT_RETURN_DATE = "effortCertificationReportReturnDate";
044        public static final String EFFORT_CERTIFICATION_REPORT_TYPE = "effortCertificationReportType";   
045        public static final String EFFORT_CERTIFICATION_REPORT_TYPE_CODE = "effortCertificationReportTypeCode";
046        public static final String EFFORT_CERTIFICATION_UPDATED_OVERALL_PERCENT = "effortCertificationUpdatedOverallPercent";
047        public static final String EFFORT_CERTIFICATION_REPORT_POSITION_OBJECT_GROUP_CODE = "effortCertificationReportPositionObjectGroupCode";
048    
049        public static final String EXPENSE_TRANSFER_FISCAL_PERIOD = "expenseTransferFiscalPeriod";
050        public static final String EXPENSE_TRANSFER_FISCAL_PERIOD_CODE = "expenseTransferFiscalPeriodCode";
051        public static final String EXPENSE_TRANSFER_FISCAL_YEAR = "expenseTransferFiscalYear";
052        
053        public static final String LABOR_OBJECT_FRINGE_OR_SALARY_CODE = KFSPropertyConstants.LABOR_OBJECT + "." + KFSPropertyConstants.FINANCIAL_OBJECT_FRINGE_OR_SALARY_CODE;
054        public static final String SOURCE_ACCOUNT_NUMBER = "sourceAccountNumber";
055        public static final String SOURCE_CHART_OF_ACCOUNTS_CODE = "sourceChartOfAccountsCode";
056        public static final String COST_SHARE_SOURCE_SUB_ACCOUNT_NUMBER ="costShareSourceSubAccountNumber";
057        public static final String EFFORT_CERTIFICATION_DOCUMENT_NEW_LINE = "newDetailLine";
058    
059        public static final String PERSISED_PAYROLL_AMOUNT = "persistedPayrollAmount";
060        public static final String PERSISED_EFFORT_PERCENT = "persistedEffortPercent";
061        public static final String NEW_LINE_INDICATOR = "newLineIndicator";
062    
063        public static final String SUMMARIZED_DETAIL_LINES = "summarizedDetailLines";
064    }