public interface MvcResult
Modifier and Type | Method and Description |
---|---|
Object |
getAsyncResult()
Get the result of async execution.
|
Object |
getAsyncResult(long timeToWait)
Get the result of async execution.
|
FlashMap |
getFlashMap()
Return the "output" flash attributes saved during request processing.
|
Object |
getHandler()
Return the executed handler.
|
HandlerInterceptor[] |
getInterceptors()
Return interceptors around the handler.
|
ModelAndView |
getModelAndView()
Return the
ModelAndView prepared by the handler. |
MockHttpServletRequest |
getRequest()
Return the performed request.
|
Exception |
getResolvedException()
Return any exception raised by a handler and successfully resolved
through a
HandlerExceptionResolver . |
MockHttpServletResponse |
getResponse()
Return the resulting response.
|
MockHttpServletRequest getRequest()
null
MockHttpServletResponse getResponse()
null
Object getHandler()
null
if none were executedHandlerInterceptor[] getInterceptors()
null
if none were selectedModelAndView getModelAndView()
ModelAndView
prepared by the handler.ModelAndView
, or null
Exception getResolvedException()
HandlerExceptionResolver
.null
FlashMap getFlashMap()
FlashMap
, possibly emptyObject getAsyncResult()
IllegalStateException
- if the async result was not set.Object getAsyncResult(long timeToWait)
timeToWait
- how long to wait for the async result to be set, in
milliseconds; if -1, then the async request timeout value is used,IllegalStateException
- if the async result was not set.