public class RequestContextHolder
extends java.lang.Object
RequestContext
instance with the current thread. The RequestContext
will not be inherited by any child threads spawned by the current thread.
Used as a central holder for the current RequestContext in Spring Web Flow, wherever necessary. Often used by integration artifacts needing access to the current flow execution.
RequestContext
Modifier and Type | Method and Description |
---|---|
static RequestContext |
getRequestContext()
Return the RequestContext associated with the current thread, if any.
|
static void |
setRequestContext(RequestContext requestContext)
Associate the given RequestContext with the current thread.
|
public static void setRequestContext(RequestContext requestContext)
requestContext
- the current RequestContext, or null
to reset the thread-bound contextpublic static RequestContext getRequestContext()
java.lang.IllegalStateException
- if no RequestContext is bound to this thread