Uses of Interface
org.apache.commons.configuration2.beanutils.BeanFactory
Packages that use BeanFactory
Package
Description
In this package a
Configuration
implementation can be found that implements the DynaBean
interface.-
Uses of BeanFactory in org.apache.commons.configuration2.beanutils
Classes in org.apache.commons.configuration2.beanutils that implement BeanFactoryModifier and TypeClassDescriptionclass
The default implementation of theBeanFactory
interface.Fields in org.apache.commons.configuration2.beanutils declared as BeanFactoryModifier and TypeFieldDescriptionprivate final BeanFactory
BeanHelper.defaultBeanFactory
Stores the default bean factory, which is used if no other factory is provided in a bean declaration.Fields in org.apache.commons.configuration2.beanutils with type parameters of type BeanFactoryModifier and TypeFieldDescriptionprivate final Map<String,
BeanFactory> BeanHelper.beanFactories
Stores a map with the registered bean factories.Methods in org.apache.commons.configuration2.beanutils that return BeanFactoryModifier and TypeMethodDescriptionBeanHelper.deregisterBeanFactory
(String name) Deregisters the bean factory with the given name.private BeanFactory
BeanHelper.fetchBeanFactory
(BeanDeclaration data) Obtains the bean factory to use for creating the specified bean.BeanHelper.getDefaultBeanFactory()
Gets the default bean factory.Methods in org.apache.commons.configuration2.beanutils with parameters of type BeanFactoryModifier and TypeMethodDescriptionprivate BeanCreationContext
BeanHelper.createBeanCreationContext
(BeanDeclaration data, Class<?> defaultClass, Object param, BeanFactory factory) Creates aBeanCreationContext
object for the creation of the specified bean.private static Class<?>
BeanHelper.fetchBeanClass
(BeanDeclaration data, Class<?> defaultClass, BeanFactory factory) Determines the class of the bean to be created.void
BeanHelper.registerBeanFactory
(String name, BeanFactory factory) Registers a bean factory under a symbolic name.Constructors in org.apache.commons.configuration2.beanutils with parameters of type BeanFactoryModifierConstructorDescriptionBeanHelper
(BeanFactory defaultBeanFactory) Constructs a new instance ofBeanHelper
and sets the specified defaultBeanFactory
.