Interface BeanRegistry
-
- All Known Implementing Classes:
DozerBeanContainer
public interface BeanRegistry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> TgetBean(Class<T> type)<T> Collection<T>getBeans(Class<T> type)voidregister(Class<?> type)
-
-
-
Method Detail
-
register
void register(Class<?> type)
-
getBean
<T> T getBean(Class<T> type)
-
getBeans
<T> Collection<T> getBeans(Class<T> type)
-
-