| Package | org.springextensions.actionscript.ioc.factory.config |
| SVN browsing | IObjectFactoryPostProcessor.as |
| Fisheye | IObjectFactoryPostProcessor.as |
| Interface | public interface IObjectFactoryPostProcessor |
| Implementors | ApplicationPropertiesResolver, ClassScannerObjectFactoryPostProcessor, CustomEditorConfigurer, MetadataProcessorObjectFactoryPostProcessor, MVCControllerObjectFactoryPostProcessor, PropertyPlaceholderConfigurer, StageProcessorFactoryPostprocessor |
Allows for custom modification of an application context's objects definitions, adapting the objects property values of the context's underlying object factory.
Application contexts can auto-detect IObjectFactoryPostProcessor objects in their object definitions and apply them before any other objects get created.
Documentation reference: customizing with iobjectfactorypostprocessor
| Method | Defined by | ||
|---|---|---|---|
|
postProcessObjectFactory(objectFactory:IConfigurableListableObjectFactory):void
Modify the application context's internal object factory after its standard
initialization.
| IObjectFactoryPostProcessor | ||
| postProcessObjectFactory | () | method |
public function postProcessObjectFactory(objectFactory:IConfigurableListableObjectFactory):voidModify the application context's internal object factory after its standard initialization. All object definitions will have been loaded, but no objects will have been instantiated yet. This allows for overriding or adding properties even to eager-initializing objects.
ParametersobjectFactory:IConfigurableListableObjectFactory — the object factory used by the application context
|