ColdSpring 2.0 - Narwhal

coldspring.beans.factory.config
Interface BeanDefinitionRegistryPostProcessor

WEB-INF.cftags.interface
        extended by coldspring.beans.factory.config.BeanDefinitionRegistryPostProcessor
All Known Implementing Classes:
ChildBeanRegistryPostProcessor , DynamicPropertyRegistryPostProcessor , FactoryBeanRegistryPostProcessor

public interface BeanDefinitionRegistryPostProcessor
extends WEB-INF.cftags.interface

A post processor for when the BeanDefintinitionRegistry is comple, but notifyComplete has not fired yet. This enables the ability to add/remove/move BeanDefinitions before notifyComplete occurs


Method Summary
 void postProcessBeanDefinitionRegistry(BeanDefinitionRegistry registry)
          Modify the application context's internal bean definition registry after its standard initialization
 
Methods inherited from class WEB-INF.cftags.interface
 

Method Detail

postProcessBeanDefinitionRegistry

public void postProcessBeanDefinitionRegistry(BeanDefinitionRegistry registry)
Modify the application context's internal bean definition registry after its standard initialization. All regular bean definitions will have been loaded, but no beans will have been instantiated yet, or will autowiring have been configured. This allows for adding further bean definitions before the next post-processing phase kicks in.

Parameters:
registry - The bean definition registry itself

ColdSpring 2.0 - Narwhal