001 /*
002 * Copyright 2011 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 1.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/ecl1.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 edu.sampleu.kew.krad;
017
018 /**
019 * This is a description of what this class does - Venkat don't forget to fill this in.
020 *
021 * @author Kuali Rice Team (rice.collab@kuali.org)
022 *
023 */
024 public class KEWConstants {
025
026 public static final String ERROR_INGESTER_COPY_FILE = "error.ingester.copy.file.data";
027 public static final String ERROR_INGESTER_LOAD_FILE = "error.ingester.load.file";
028 public static final String ERROR_INGESTER_EXTRANEOUS_FILE = "error.ingester.extraneous.file";
029
030 public static final String ERROR_INGESTER_NO_VALID_FILES = "error.ingester.no.valid.files";
031 public static final String ERROR_INGESTER_FAILED = "error.ingester.failed";
032 public static final String INFO_INGESTER_SUCCESS = "info.ingester.success";
033 public static final String ERROR_INGESTER_ROLLEDBACK = "error.ingester.rolledback";
034 public static final String ERROR_INGESTER_FAILED_XML = "error.ingester.failed.xml";
035
036 public static final String ERROR_INGESTER_DURING_INJECT = "error.ingester.during.inject";
037 public static final String ERROR_INGESTER_NO_XMLS = "error.ingester.no.xmls";
038
039 public static final String INGESTER_SECTION_ID = "KEW-IngesterView";
040
041 }