View Javadoc
1   /*
2    * Copyright 2008 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
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.ole.sys;
17  
18  
19  public class OleAuthorizationConstants  {
20  
21      public static class TransactionalEditMode {
22          public static final String EXPENSE_ENTRY = "expenseEntry";
23      }
24  
25      public static class DisbursementVoucherEditMode {
26          public static final String PAYEE_ENTRY = "payeeEntry";
27          public static final String TAX_ENTRY = "taxEntry";
28          public static final String FRN_ENTRY = "frnEntry";
29          public static final String WIRE_ENTRY = "wireEntry";
30          public static final String TRAVEL_ENTRY = "travelEntry";
31          public static final String FULL_ENTRY = "fullEntry";
32          public static final String PAYMENT_HANDLING_ENTRY = "paymentHandlingEntry";
33          public static final String VOUCHER_DEADLINE_ENTRY = "voucherDeadlineEntry";
34          public static final String SPECIAL_HANDLING_CHANGING_ENTRY = "specialHandlingChangingEntry";
35          public static final String IMMEDIATE_DISBURSEMENT_ENTRY = "immediateDisbursementEntryMode";
36      }
37  
38      public static class DistributionOfIncomeAndExpenseEditMode {
39          public static final String SOURCE_LINE_READ_ONLY_MODE = "sourceLinesReadOnlyMode";
40      }
41  
42      public static class CashReceiptEditMode {
43          public static final String CASH_MANAGER_CONFIRM_MODE = "cmConfirm";
44          public static final String CHANGE_REQUEST_MODE = "changeRequestOn";
45      }
46  
47      public static class CashManagementEditMode {
48          public static final String ALLOW_ADDITIONAL_DEPOSITS = "allowAdditionalDeposits";
49          public static final String ALLOW_CANCEL_DEPOSITS = "allowCancelDeposits";
50      }
51  
52      public static class BudgetAdjustmentEditMode {
53          public static final String BASE_AMT_ENTRY = "baseAmtEntry";
54      }
55  
56      public static class CustomerInvoiceEditMode extends TransactionalEditMode {
57          public static final String PROCESSING_ORGANIZATION_MODE = "processingOrganizationMode";
58      }
59  }