01: /*
02: * Copyright 2006-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.financial.rules;
17:
18: /**
19: * Holds constants for budget adjustments
20: */
21: public class BudgetAdjustmentDocumentRuleConstants {
22: public static final String BUDGET_ADJUSTMENT_DOCUMENT_SECURITY_GROUPING = "Kuali.FinancialTransactionProcessing.BudgetAdjustmentDocument";
23:
24: public static final String GENERATE_TOF_GLPE_ENTRIES_PARM_NM = "GLPE_GENERATE_TRANSFER_IND";
25: public static final String TRANSFER_OBJECT_CODE_PARM_NM = "GLPE_INCOME_TRANSFER_OBJECT_CODE";
26:
27: public static final String MONTH_1_PERIOD_CODE = "01";
28: public static final String MONTH_2_PERIOD_CODE = "02";
29: public static final String MONTH_3_PERIOD_CODE = "03";
30: public static final String MONTH_4_PERIOD_CODE = "04";
31: public static final String MONTH_5_PERIOD_CODE = "05";
32: public static final String MONTH_6_PERIOD_CODE = "06";
33: public static final String MONTH_7_PERIOD_CODE = "07";
34: public static final String MONTH_8_PERIOD_CODE = "08";
35: public static final String MONTH_9_PERIOD_CODE = "09";
36: public static final String MONTH_10_PERIOD_CODE = "10";
37: public static final String MONTH_11_PERIOD_CODE = "11";
38: public static final String MONTH_12_PERIOD_CODE = "12";
39: }
|