Coverage Report - org.dozer.config.PropertyConstants
 
Classes in this File Line Coverage Branch Coverage Complexity
PropertyConstants
0%
0/1
N/A
1
 
 1  
 /**
 2  
  * Copyright 2005-2013 Dozer Project
 3  
  *
 4  
  * Licensed under the Apache 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.apache.org/licenses/LICENSE-2.0
 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.dozer.config;
 17  
 
 18  
 /**
 19  
  * Internal constants file that holds all the keys to configurable properties in the dozer.properties file
 20  
  * 
 21  
  * @author tierney.matt
 22  
  */
 23  
 public final class PropertyConstants {
 24  
   
 25  0
   private PropertyConstants() {}
 26  
 
 27  
   public static final String STATISTICS_ENABLED = "dozer.statistics.enabled";
 28  
   public static final String CONVERTER_CACHE_MAX_SIZE = "dozer.cache.converter.by.dest.type.maxsize";
 29  
   public static final String SUPERTYPE_CACHE_MAX_SIZE = "dozer.cache.super.type.maxsize";
 30  
   public static final String AUTOREGISTER_JMX_BEANS = "dozer.autoregister.jmx.beans";
 31  
   public static final String EL_ENABLED = "dozer.el.enabled";
 32  
 
 33  
   // Bean Implementations
 34  
   public static final String CLASS_LOADER_BEAN = "org.dozer.util.DozerClassLoader";
 35  
   public static final String PROXY_RESOLVER_BEAN = "org.dozer.util.DozerProxyResolver";
 36  
 
 37  
 }