Coverage Report - org.dozer.BeanFactory
 
Classes in this File Line Coverage Branch Coverage Complexity
BeanFactory
N/A
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;
 17  
 
 18  
 /**
 19  
  * Public custom bean factory interface.
 20  
  * 
 21  
  * You can configure Dozer to use custom bean factories to create new instances of destination data objects during the
 22  
  * mapping process. By default Dozer just creates a new instance of any destination objects using a default constructor.
 23  
  * This is sufficient for most use cases, but if you need more flexibility you can specify your own bean factories to
 24  
  * instantiate the data objects.
 25  
  * 
 26  
  * <p>
 27  
  * Your custom bean factory must implement the org.dozer.BeanFactory interface.
 28  
  * 
 29  
  * <p>
 30  
  * Note: By default the Dozer mapping engine will use the destination object class name for the bean id when invoking
 31  
  * the factory.
 32  
  * 
 33  
  * <p>
 34  
  * <a
 35  
  * href="http://dozer.sourceforge.net/documentation/custombeanfactories.html">http://dozer.sourceforge.net/documentation/custombeanfactories.html</a>
 36  
  * 
 37  
  * @author tierney.matt
 38  
  */
 39  
 public interface BeanFactory {
 40  
 
 41  
   // Need sourceObjClass in case sourceObj is null
 42  
   public Object createBean(Object source, Class<?> sourceClass, String targetBeanId);
 43  
 
 44  
 }