List<Instantiator<?>> instantiatorList = ImmutableList.of(
new RequestAttributeInstantiator(request),
new VRaptorTypeConverter(converters),
FallbackConverter.fallbackToNull(new StringConverter()),
new ArrayAdapter(new ArrayInstantiator(this)),
new NullDecorator(new ListInstantiator(this)),
new NullDecorator(new SetInstantiator(this)),
new DependencyInstantiator(),
new ObjectInstantiator(this, provider, parameterNameProvider));
multiInstantiator = new MultiInstantiator(instantiatorList);
}