| uk.org.ponder.rsf.request.EarlyRequestParser
All known Subclasses: uk.org.ponder.rsf.request.StaticEarlyRequestParser, uk.org.ponder.rsf.servlet.ServletEarlyRequestParser, uk.org.ponder.rsf.request.DynamicStreamEarlyRequestParser,
EarlyRequestParser | public interface EarlyRequestParser (Code) | | Interface defining (almost) all of the information required by RSF from
our request provider (whether Servlet/Portlet &c). The remaining information
comes though BaseURLProvider, and if in use, a session dependence through
InSessionTokenRequestState.
author: Antranig Basman (antranig@caret.cam.ac.uk) |
ACTION_REQUEST | final public static String ACTION_REQUEST(Code) | | Identifies this request as part of an "action" cycle - for a simple
HTTP servlet, corresponds to a POST, a JSR168 "processAction" request
or a WSRP performBlockingInteration request.
|
PORTLET_168_ENVIRONMENT | final public static String PORTLET_168_ENVIRONMENT(Code) | | Identifies this environment as a JSR 168 javax.portlet Portlets environment *
|
PORTLET_286_ENVIRONMENT | final public static String PORTLET_286_ENVIRONMENT(Code) | | Identifies this environment as a JSR 286 javax.portlet Portlets environment *
|
RENDER_REQUEST | final public static String RENDER_REQUEST(Code) | | Identifies this request as part of a "render" cycle - for a simple HTTP
servlet, corresponds to a GET, a JSR168 "render" request or a WSRP
getMarkup request.
|
SERVLET_ENVIRONMENT | final public static String SERVLET_ENVIRONMENT(Code) | | Identifies this environment as a javax.servlet Servlets environment *
|
getEnvironmentType | public String getEnvironmentType()(Code) | | Returns one of the _ENVIRONMENT Strings above, if the environment
can be determined to be one of the known standard types, or null otherwise.
|
getMultipartMap | public Map getMultipartMap()(Code) | | Returns a (possibly empty) Map of parameter names to Spring MultipartFile
for the current request
|
getPathInfo | public String getPathInfo()(Code) | | The pathinfo as returned from the request. This INCLUDES an initial
slash but no final slash.
|
getRequestMap | public Map getRequestMap()(Code) | | The parameter map from the request
|
getRequestType | public String getRequestType()(Code) | | A factory method for a String encoding the nature of the current request
cycle, either RENDER_REQUEST or ACTION_REQUEST.
|
|
|