Packageorg.springextensions.actionscript.ioc.factory.config
SVN browsingIObjectFactoryPostProcessor.as
FisheyeIObjectFactoryPostProcessor.as
Interfacepublic interface IObjectFactoryPostProcessor
ImplementorsApplicationPropertiesResolver, 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


Public Methods
 MethodDefined by
  
Modify the application context's internal object factory after its standard initialization.
IObjectFactoryPostProcessor
Method detail
postProcessObjectFactory()method
public function postProcessObjectFactory(objectFactory:IConfigurableListableObjectFactory):void

Modify 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.

Parameters
objectFactory:IConfigurableListableObjectFactory — the object factory used by the application context