001/*
002 * The Kuali Financial System, a comprehensive financial management system for higher education.
003 * 
004 * Copyright 2005-2014 The Kuali Foundation
005 * 
006 * This program is free software: you can redistribute it and/or modify
007 * it under the terms of the GNU Affero General Public License as
008 * published by the Free Software Foundation, either version 3 of the
009 * License, or (at your option) any later version.
010 * 
011 * This program is distributed in the hope that it will be useful,
012 * but WITHOUT ANY WARRANTY; without even the implied warranty of
013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
014 * GNU Affero General Public License for more details.
015 * 
016 * You should have received a copy of the GNU Affero General Public License
017 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
018 */
019package org.kuali.kfs.sys;
020
021public class KfsAuthorizationConstants  {
022
023    public static class TransactionalEditMode{
024        public static final String EXPENSE_ENTRY = "expenseEntry";
025        public static final String IMMEDIATE_DISBURSEMENT_ENTRY = "immediateDisbursementEntryMode";
026        public static final String FRN_ENTRY = "frnEntry";
027        public static final String WIRE_ENTRY = "wireEntry";
028    }
029
030    public static class DisbursementVoucherEditMode {
031        public static final String PAYEE_ENTRY = "payeeEntry";
032        public static final String TAX_ENTRY = "taxEntry";
033        public static final String TRAVEL_ENTRY = "travelEntry";
034        public static final String FULL_ENTRY = "fullEntry";
035        public static final String PAYMENT_HANDLING_ENTRY = "paymentHandlingEntry";
036        public static final String VOUCHER_DEADLINE_ENTRY = "voucherDeadlineEntry";
037        public static final String SPECIAL_HANDLING_CHANGING_ENTRY = "specialHandlingChangingEntry";
038        public static final String PAYMENT_REASON_EDIT_MODE = "paymentReasonEditMode";
039        public static final String EXTRACT_NOW = "extractNow";
040    }
041
042    public static class DistributionOfIncomeAndExpenseEditMode {
043        public static final String SOURCE_LINE_READ_ONLY_MODE = "sourceLinesReadOnlyMode";
044    }
045
046    public static class CashReceiptEditMode {
047        public static final String CASH_MANAGER_CONFIRM_MODE = "cmConfirm";
048        public static final String CHANGE_REQUEST_MODE = "changeRequestOn";
049    }
050
051    public static class CashManagementEditMode {
052        public static final String ALLOW_ADDITIONAL_DEPOSITS = "allowAdditionalDeposits";
053        public static final String ALLOW_CANCEL_DEPOSITS = "allowCancelDeposits";
054    }
055
056    public static class BudgetAdjustmentEditMode {
057        public static final String BASE_AMT_ENTRY = "baseAmtEntry";
058    }
059
060    public static class CustomerInvoiceEditMode extends TransactionalEditMode {
061        public static final String PROCESSING_ORGANIZATION_MODE = "processingOrganizationMode";
062    }
063}