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 TypeClassDescriptionclassThe default implementation of theBeanFactoryinterface.Fields in org.apache.commons.configuration2.beanutils declared as BeanFactoryModifier and TypeFieldDescriptionprivate final BeanFactoryBeanHelper.defaultBeanFactoryStores 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.beanFactoriesStores 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 BeanFactoryBeanHelper.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 BeanCreationContextBeanHelper.createBeanCreationContext(BeanDeclaration data, Class<?> defaultClass, Object param, BeanFactory factory) Creates aBeanCreationContextobject 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.voidBeanHelper.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 ofBeanHelperand sets the specified defaultBeanFactory.