| org.strecks.injection.factory.InjectionHandlerFactory
All known Subclasses: org.strecks.injection.factory.WebHelperFactory, org.strecks.injection.factory.SessionAttributeFactory, org.strecks.injection.factory.SpringBeanFactory, org.strecks.injection.factory.RequestInjectionFactory, org.strecks.injection.factory.ScopedAttributeFactory, org.strecks.injection.factory.LocaleInjectionFactory, org.strecks.injection.factory.RedirectHelperFactory, org.strecks.injection.factory.ActionMappingFactory, org.strecks.injection.factory.ContextInjectionFactory, org.strecks.injection.factory.ResponseInjectionFactory, org.strecks.injection.factory.MessageResourcesHelperInjectionFactory, org.strecks.injection.factory.RedirectParameterFactory, org.strecks.injection.factory.RequestParameterFactory, org.strecks.injection.factory.ActionFormFactory, org.strecks.injection.factory.MessageResourcesInjectionFactory, org.strecks.injection.factory.RequestAttributeFactory, org.strecks.injection.factory.ContextAttributeFactory,
InjectionHandlerFactory | public interface InjectionHandlerFactory (Code) | | Interface for extracting information from an annotation which itself uses the InjectFactoryClass
annotation, to create an InjectionHandler implementation used for a specific type of action class
dependency injection
author: Phil Zoio |
createInjectionHandler | public InjectionHandler createInjectionHandler(Annotation annotation, Class clazz, PropertyDescriptor propertyDescriptor)(Code) | | Defines operation for creating an InjectionHandler instance from an annotation which itself uses
the InjectionFactoryClass annotation to declare the InjectionHandlerFactory
implementation class
Parameters: annotation - the dependency injection annotation Parameters: clazz - the declared type of the injected parameter Parameters: propertyDescriptor - PropertyDescriptor for the annotated method the InjectionHandler used to handle the dependency injection operation |
|
|