protected ControllerProcessorDelegate newControllerProcessorDelegate()
{
InterceptorBuilder interceptorBuilder = newInterceptorBuilder();
interceptorBuilder.build(getPrefix());
ControllerProcessorDelegateImpl delegate = new ControllerProcessorDelegateImpl();
delegate.setBeforeInterceptors(interceptorBuilder.getBeforeInterceptors());
delegate.setAfterInterceptors(interceptorBuilder.getAfterInterceptors());
return delegate;
}