Generated by
JDiff

Class org.springframework.web.method.support.ModelAndViewContainer

Documentation changed from old to new.

Changed Methods
ModelAndViewContainer addAllAttributes(Map<String, ?>) Documentation changed from old to new.
Copy all attributes to the underlying model.
boolean containsAttribute(String) Documentation changed from old to new.
Whether the underlying model contains the given attribute name.
ModelMap getModel() Documentation changed from old to new.
Return the model to use: the "default" or the "redirect" model.
SessionStatus getSessionStatus() Documentation changed from old to new.
Return the SessionStatus instance to use that can be used to signal that session processing is complete.
String getViewName() Documentation changed from old to new.
Return the view name to be resolved by the DispatcherServlet via a ViewResolver, or {@code null} if a View object is set.
boolean isViewReference() Documentation changed from old to new.
Whether the view is a view reference specified via a name to be resolved by the DispatcherServlet via a ViewResolver.
ModelAndViewContainer mergeAttributes(Map<String, ?>) Documentation changed from old to new.
Copy attributes in the supplied Map with existing objects of the same name taking precedence (i.e.
void setIgnoreDefaultModelOnRedirect(boolean) Documentation changed from old to new.
When set to {@code true} the default model is never used in a redirect scenario.
void setRedirectModel(ModelMap) Documentation changed from old to new.
Provide a separate model instance to use in a redirect scenario.
void setRequestHandled(boolean) Documentation changed from old to new.
Signal a scenario where the request is handled directly.
void setView(Object) Documentation changed from old to new.
Set a View object to be used by the DispatcherServlet.
void setViewName(String) Documentation changed from old to new.
Set a view name to be resolved by the DispatcherServlet via a ViewResolver.
ModelAndViewContainer addAttribute(Object) Documentation changed from old to new.
Add the supplied attribute to the underlying model.
ModelAndViewContainer addAttribute(String, Object) Documentation changed from old to new.
Add the supplied attribute to the underlying model.