Coverage Report - org.kuali.rice.core.util.RiceConstants
 
Classes in this File Line Coverage Branch Coverage Complexity
RiceConstants
0%
0/5
N/A
1.25
 
 1  
 /*
 2  
  * Copyright 2007-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.rice.core.util;
 17  
 
 18  
 import java.text.DateFormat;
 19  
 import java.text.SimpleDateFormat;
 20  
 
 21  
 /**
 22  
  * This is a class to hold constant values that will be used across multiple modules of Rice
 23  
  * 
 24  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 25  
  */
 26  
 public final class RiceConstants {
 27  
         public static final String DB_PLATFORM = "dbPlatform";
 28  
 
 29  
     public static final String RICE_JPA_ENABLED = "rice.jpa.enabled";
 30  
     public static final String JPA_ENABLED_SUFFIX = ".jpa.enabled";
 31  
     
 32  
     public static final String SERVICES_TO_CACHE = "rice.resourceloader.servicesToCache";
 33  
     public static final String RICE_LOGGING_CONFIGURE = "rice.logging.configure";
 34  
 
 35  
     public static final String SPRING_TRANSACTION_MANAGER = "SPRING_TRANSACTION_MANAGER";
 36  
 
 37  
     public static final String ROOT_RESOURCE_LOADER_CONTAINER_NAME = "RootResourceLoaderContainer";
 38  
     public static final String DEFAULT_ROOT_RESOURCE_LOADER_NAME = "RootResourceLoader";
 39  
 
 40  
     public static final String RICE_CONFIGURER_CONFIG_NAME = "riceConfigurer";
 41  
 
 42  
     
 43  
     // Configuration Objects
 44  
 
 45  
         public static final String DATASOURCE_OBJ = "datasource";
 46  
         public static final String NON_TRANSACTIONAL_DATASOURCE_OBJ = "nonTransactionalDatasource";
 47  
         public static final String SERVER_DATASOURCE_OBJ = "serverDatasource";
 48  
         public static final String TRANSACTION_MANAGER_OBJ = "transactionManager";
 49  
         public static final String USER_TRANSACTION_OBJ = "userTransaction";
 50  
         public static final String M_BEANS = "mBeans";
 51  
         public static final String ALT_SPRING_FILE = "config.spring.file";
 52  
         public static final String ALT_OJB_FILE        = "config.obj.file";
 53  
 
 54  
         // JNDI configuration 
 55  
         
 56  
         public static final String TRANSACTION_MANAGER_JNDI = "transactionManager.jndi.location";
 57  
         public static final String USER_TRANSACTION_JNDI = "userTransaction.jndi.location";//"transactionManager.jndi.location";
 58  
     public static final String DATASOURCE_JNDI = "datasource.jndi.location";
 59  
     public static final String NON_TRANSACTIONAL_DATASOURCE_JNDI = "nonTransactional.datasource.jndi.location";
 60  
     public static final String SERVER_DATASOURCE_JNDI = "serverDatasource.jndi.location";
 61  
 
 62  
         
 63  
     // Default struts mapping forward key
 64  
     public static final String MAPPING_BASIC = "basic";
 65  
 
 66  
     // Default date formatting
 67  
     public static final String SIMPLE_DATE_FORMAT_FOR_DATE = "MM/dd/yyyy";
 68  
     public static final String SIMPLE_DATE_FORMAT_FOR_TIME = "hh:mm a";
 69  
     public static final String DEFAULT_DATE_FORMAT_PATTERN = SIMPLE_DATE_FORMAT_FOR_TIME + " " + SIMPLE_DATE_FORMAT_FOR_DATE;
 70  
 
 71  
     public static DateFormat getDefaultDateFormat() {
 72  0
         return new SimpleDateFormat(SIMPLE_DATE_FORMAT_FOR_DATE);
 73  
     }
 74  
 
 75  
     public static DateFormat getDefaultTimeFormat() {
 76  0
         return new SimpleDateFormat(SIMPLE_DATE_FORMAT_FOR_TIME);
 77  
     }
 78  
 
 79  
     public static DateFormat getDefaultDateAndTimeFormat() {
 80  0
         return new SimpleDateFormat(DEFAULT_DATE_FORMAT_PATTERN);
 81  
     }
 82  
 
 83  
         public static final long NO_WAIT = 0;
 84  
 
 85  
         public static final String RICE_JAXWS_TARGET_NAMESPACE_BASE = "http://rice.kuali.org/wsdl";
 86  
         
 87  0
         private RiceConstants() {
 88  0
                 throw new UnsupportedOperationException("do not call");
 89  
         }
 90  
 }