public RequestMappedRedirectViewModelBuilder(RequestMappedRedirectViewContext context, Method handlerMethod) {
Assert.notNull(context, "Context must not be null");
Assert.notNull(handlerMethod, "HandlerMethod must not be null");
this.context = context;
this.handlerMethod = handlerMethod;
this.methodParameterFilter = new MethodParameterFilterChain(ANNOTAION_FILTER, TYPE_FILTER,
new WebArgumentResolverMethodParameterFilter(context.getCustomArgumentResolvers()));
}