public interface MvcResult
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getAsyncResult()
Get the result of async execution.
|
java.lang.Object |
getAsyncResult(long timeToWait)
Get the result of async execution.
|
FlashMap |
getFlashMap()
Return the "output" flash attributes saved during request processing.
|
java.lang.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.
|
java.lang.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
java.lang.Object getHandler()
null
if none were executedHandlerInterceptor[] getInterceptors()
null
if none were selectedModelAndView getModelAndView()
ModelAndView
prepared by the handler.ModelAndView
, or null
java.lang.Exception getResolvedException()
HandlerExceptionResolver
.null
FlashMap getFlashMap()
FlashMap
, possibly emptyjava.lang.Object getAsyncResult()
MockAsyncContext.getTimeout()
.java.lang.IllegalStateException
- if the async result was not setjava.lang.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,
i.e.MockAsyncContext.getTimeout()
.java.lang.IllegalStateException
- if the async result was not set