Class DozerBeanContainer
- java.lang.Object
-
- com.github.dozermapper.core.inject.DozerBeanContainer
-
- All Implemented Interfaces:
BeanRegistry
public class DozerBeanContainer extends Object implements BeanRegistry
-
-
Constructor Summary
Constructors Constructor Description DozerBeanContainer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> TgetBean(Class<T> type)<T> Collection<T>getBeans(Class<T> type)voidregister(Class<?> type)
-
-
-
Method Detail
-
register
public void register(Class<?> type)
- Specified by:
registerin interfaceBeanRegistry
-
getBean
public <T> T getBean(Class<T> type)
- Specified by:
getBeanin interfaceBeanRegistry
-
getBeans
public <T> Collection<T> getBeans(Class<T> type)
- Specified by:
getBeansin interfaceBeanRegistry
-
-