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.fp.document.validation.impl;
017
018 /**
019 * Holds constants for budget adjustments
020 */
021 public class BudgetAdjustmentDocumentRuleConstants {
022 public static final String BUDGET_ADJUSTMENT_DOCUMENT_SECURITY_GROUPING = "Kuali.FinancialTransactionProcessing.BudgetAdjustmentDocument";
023
024 public static final String GENERATE_TOF_GLPE_ENTRIES_PARM_NM = "GLPE_GENERATE_TRANSFER_IND";
025 public static final String TRANSFER_OBJECT_CODE_PARM_NM = "GLPE_INCOME_TRANSFER_OBJECT_CODE";
026
027 public static final String MONTH_1_PERIOD_CODE = "01";
028 public static final String MONTH_2_PERIOD_CODE = "02";
029 public static final String MONTH_3_PERIOD_CODE = "03";
030 public static final String MONTH_4_PERIOD_CODE = "04";
031 public static final String MONTH_5_PERIOD_CODE = "05";
032 public static final String MONTH_6_PERIOD_CODE = "06";
033 public static final String MONTH_7_PERIOD_CODE = "07";
034 public static final String MONTH_8_PERIOD_CODE = "08";
035 public static final String MONTH_9_PERIOD_CODE = "09";
036 public static final String MONTH_10_PERIOD_CODE = "10";
037 public static final String MONTH_11_PERIOD_CODE = "11";
038 public static final String MONTH_12_PERIOD_CODE = "12";
039
040 public static final String INCOME_STREAM_CHART_ACCOUNT_DELIMITER = "|";
041 }