I was reading Struts2 in Action, and it said that if an interceptor B fires after interceptor A, and B determines that control should not be allowed to go to Action (as there might be validation errors as done by DefaultWorkFLowInterceptor). It then returns "input"..and the page is rendered to the user. The control then comes back to interceptor A, but A can't modify the result now, as the page has already been sent to the client.
But, since the interceptor B returns just a string, the interceptor A can simply return another string in its place, and the result changes. DefaultWorkFLowInterceptor returns just a string, it doesn't actually write anything to the response stream, so when control goes back to its preceding interceptors, why can't they change the input ?