{
public InjectionHandler createInjectionHandler(Annotation annotation, Class clazz, PropertyDescriptor propertyDescriptor)
{
InjectRedirectParameter input = (InjectRedirectParameter) annotation;
String parameterName = AnnotationFactoryUtils.getAttributeName(propertyDescriptor.getName(), input.name());
InjectionHandler handler = new RedirectParameterInjectionHandler(parameterName);
return handler;
}