1 /**
2 * Copyright 2005-2011 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.rice.kcb.test;
17
18 import org.kuali.rice.kcb.util.KCBConstants;
19
20 /**
21 * Constants reflecting test data that is used in tests.
22 * If tests or test data is updated, this file need to be updated
23 * to be kept in sync.
24 *
25 * @author Kuali Rice Team (rice.collab@kuali.org)
26 */
27 public final class TestConstants {
28 /**
29 * Email deliverer property
30 */
31 public static final String EMAIL_DELIVERER_PROPERTY_VALUE = "kuali-kcb-testing@localhost.edu";
32 /**
33 * A valid deliverer name
34 */
35 public static final String VALID_DELIVERER_NAME = KCBConstants.MESSAGE_DELIVERY_TYPES.EMAIL_MESSAGE_DELIVERY_TYPE;
36 /**
37 * An invalid deliverer name
38 */
39 public static final String NON_EXISTENT_DELIVERER_NAME = "BOGUS_DELIVERER";
40
41
42 private TestConstants() {
43 throw new UnsupportedOperationException("do not call");
44 }
45 }