Class Request
- All Implemented Interfaces:
javax.servlet.http.HttpServletRequest,javax.servlet.ServletRequest
Implements HttpServletRequest from the javax.servlet.http package.
The standard interface of mostly getters, is extended with setters so that the request is mutable by the handlers that it is passed to. This allows the request object to be as lightweight as possible and not actually implement any significant behavior. For example
- The
getContextPath()method will return null, until the request has been passed to aContextHandlerwhich matches thegetPathInfo()with a context path and callssetContextPath(String)as a result. - the HTTP session methods will all return null sessions until such time as a request has been passed to a
SessionHandlerwhich checks for session cookies and enables the ability to create new sessions. - The
getServletPath()method will return null until the request has been passed to aorg.eclipse.jetty.servlet.ServletHandlerand the pathInfo matched against the servlet URL patterns andsetServletPath(String)called as a result.
A request instance is created for each connection accepted by the server and recycled for each HTTP request received via that connection. An effort is made to avoid reparsing headers and cookies that are likely to be the same for requests from the same connection.
Request instances are recycled, which combined with badly written asynchronous applications can result in calls on requests that have been reset. The code is written in a style to avoid NPE and ISE when such calls are made, as this has often proved generate exceptions that distraction from debugging such bad asynchronous applications. Instead, request methods attempt to not fail when called in an illegal state, so that hopefully the bad application will proceed to a major state event (eg calling AsyncContext.onComplete) which has better asynchronous guards, true atomic state and better failure behaviour that will assist in debugging.
The form content that a request can process is limited to protect from Denial of Service attacks. The size in bytes is limited by
ContextHandler.getMaxFormContentSize() or if there is no context then the "org.eclipse.jetty.server.Request.maxFormContentSize" Server
attribute. The number of parameters keys is limited by ContextHandler.getMaxFormKeys() or if there is no context then the
"org.eclipse.jetty.server.Request.maxFormKeys" Server attribute.
If IOExceptions or timeouts occur while reading form parameters, these are thrown as unchecked Exceptions: ether RuntimeIOException,
BadMessageException or RuntimeException as appropriate.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final Collection<Locale> private AsyncContextStateprivate Objectprivate Attributesprivate Authenticationprivate final HttpChannelprivate Stringprivate booleanprivate Stringprivate ContextHandler.Contextprivate Stringprivate CookieCutterprivate booleanprivate javax.servlet.DispatcherTypeprivate ContextHandler.Contextprivate booleanprivate final HttpInputprivate intprivate MetaData.Requestprivate MultiPartsprivate booleanprivate Stringprivate Stringprivate Stringprivate BufferedReaderprivate Stringprivate InetSocketAddressprivate final List<javax.servlet.ServletRequestAttributeListener> private Stringprivate booleanprivate UserIdentity.Scopeprivate booleanprivate Stringprivate javax.servlet.http.HttpSessionprivate SessionHandlerprivate longprivate static final intprivate static final intprivate static final intprivate static final Loggerstatic final Stringstatic final StringFields inherited from interface javax.servlet.http.HttpServletRequest
BASIC_AUTH, CLIENT_CERT_AUTH, DIGEST_AUTH, FORM_AUTH -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddEventListener(EventListener listener) booleanauthenticate(javax.servlet.http.HttpServletResponse response) private voidcommitSession(Session session) A response is being committed for a session, potentially write the session out before the client receives the response.voidenterSession(javax.servlet.http.HttpSession s) Remember a session that this request has just entered.private voidvoidextractFormParameters(MultiMap<String> params) private voidprivate Stringprivate intjavax.servlet.AsyncContextgetAttribute(String name) Get Request Attribute.Get the authentication.static RequestgetBaseRequest(javax.servlet.ServletRequest request) Obtain the baseRequestinstance of aServletRequest, by coercion, unwrapping or special attribute.intlonglongjavax.servlet.http.Cookie[]longgetDateHeader(String name) javax.servlet.DispatcherTypegetHeaders(String name) intjavax.servlet.ServletInputStreamintgetIntHeader(String name) intgetParameter(String name) String[]getParameterValues(String name) javax.servlet.http.PartCollection<javax.servlet.http.Part> getParts()private Collection<javax.servlet.http.Part> Get a PushBuilder associated with this request initialized as follows: The method is initialized to "GET" The headers from this request are copied to the Builder, except for: Conditional headers (eg.getRealPath(String path) Access the underlying RemoteInetSocketAddressfor this request.intjavax.servlet.RequestDispatchergetRequestDispatcher(String path) Reconstructs the URL the client used to make the request.intjavax.servlet.ServletContextjavax.servlet.ServletResponsejavax.servlet.http.HttpSessionjavax.servlet.http.HttpSessiongetSession(boolean create) javax.servlet.http.HttpSessiongetSession(SessionHandler sessionHandler) Find a session that this request has already entered for the given SessionHandlerlongGet Request TimeStampbooleanbooleanbooleanprivate booleanbooleanbooleanisHead()private static booleanisNoParams(MultiMap<String> inputParameters) Compare inputParameters to NO_PARAMS by ReferencebooleanisPush()booleanbooleanbooleanbooleanbooleanbooleanisSecure()booleanisUserInRole(String role) private voidleaveSession(Session session) Complete this request's access to a session.voidvoidlogout()private intlookupServerAttribute(String key, int dftValue) voidmergeQueryParameters(String oldQuery, String newQuery, boolean updateQueryString) private MultiPartsnewMultiParts(javax.servlet.MultipartConfigElement config) voidCalled when the request is fully finished being handled.voidCalled when a response is about to be committed, ie sent back to the clientprotected voidrecycle()voidremoveAttribute(String name) voidremoveEventListener(EventListener listener) voidvoidvoidsetAsyncSupported(boolean supported, Object source) voidsetAttribute(String name, Object value) voidsetAttributes(Attributes attributes) voidsetAuthentication(Authentication authentication) Set the authentication.voidsetAuthority(String host, int port) voidsetCharacterEncoding(String encoding) voidsetCharacterEncodingUnchecked(String encoding) voidsetContentParameters(MultiMap<String> contentParameters) voidsetContentType(String contentType) voidsetContext(ContextHandler.Context context) Set request contextvoidsetContextPath(String contextPath) Sets the "context path" for this requestvoidsetCookies(javax.servlet.http.Cookie[] cookies) voidsetDispatcherType(javax.servlet.DispatcherType type) voidsetHandled(boolean h) voidsetHttpURI(HttpURI uri) voidsetHttpVersion(HttpVersion version) voidsetMetaData(MetaData.Request request) voidvoidsetPathInfo(String pathInfo) voidsetQueryEncoding(String queryEncoding) Set the character encoding used for the query string.voidsetQueryParameters(MultiMap<String> queryParameters) voidsetQueryString(String queryString) voidvoidsetRequestedSessionId(String requestedSessionId) voidsetRequestedSessionIdFromCookie(boolean requestedSessionIdCookie) voidvoidsetSecure(boolean secure) voidsetServletPath(String servletPath) voidsetSession(javax.servlet.http.HttpSession session) voidsetSessionHandler(SessionHandler sessionHandler) voidsetTimeStamp(long ts) voidsetURIPathQuery(String requestURI) voidjavax.servlet.AsyncContextjavax.servlet.AsyncContextstartAsync(javax.servlet.ServletRequest servletRequest, javax.servlet.ServletResponse servletResponse) booleantoString()static javax.servlet.http.HttpServletRequestunwrap(javax.servlet.ServletRequest servletRequest) <T extends javax.servlet.http.HttpUpgradeHandler>
TMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface javax.servlet.http.HttpServletRequest
getHttpServletMapping, getTrailerFields, isTrailerFieldsReady, newPushBuilder
-
Field Details
-
MULTIPART_CONFIG_ELEMENT
- See Also:
-
MULTIPARTS
- See Also:
-
LOG
-
__defaultLocale
-
INPUT_NONE
private static final int INPUT_NONE- See Also:
-
INPUT_STREAM
private static final int INPUT_STREAM- See Also:
-
INPUT_READER
private static final int INPUT_READER- See Also:
-
NO_PARAMS
-
_channel
-
_requestAttributeListeners
-
_input
-
_metaData
-
_originalURI
-
_contextPath
-
_servletPath
-
_pathInfo
-
_asyncNotSupportedSource
-
_secure
private boolean _secure -
_newContext
private boolean _newContext -
_cookiesExtracted
private boolean _cookiesExtracted -
_handled
private boolean _handled -
_contentParamsExtracted
private boolean _contentParamsExtracted -
_requestedSessionIdFromCookie
private boolean _requestedSessionIdFromCookie -
_attributes
-
_authentication
-
_contentType
-
_characterEncoding
-
_context
-
_errorContext
-
_cookies
-
_dispatcherType
private javax.servlet.DispatcherType _dispatcherType -
_inputState
private int _inputState -
_reader
-
_readerEncoding
-
_queryParameters
-
_contentParameters
-
_parameters
-
_queryEncoding
-
_remote
-
_requestedSessionId
-
_scope
-
_session
private javax.servlet.http.HttpSession _session -
_sessionHandler
-
_timeStamp
private long _timeStamp -
_multiParts
-
_async
-
_sessions
-
-
Constructor Details
-
Request
-
-
Method Details
-
isNoParams
Compare inputParameters to NO_PARAMS by Reference- Parameters:
inputParameters- The parameters to compare to NO_PARAMS- Returns:
- True if the inputParameters reference is equal to NO_PARAMS otherwise False
-
getBaseRequest
Obtain the baseRequestinstance of aServletRequest, by coercion, unwrapping or special attribute.- Parameters:
request- The request- Returns:
- the base
Requestinstance of aServletRequest.
-
getHttpFields
-
getTrailers
-
getHttpInput
-
isPush
public boolean isPush() -
isPushSupported
public boolean isPushSupported() -
getPushBuilder
Get a PushBuilder associated with this request initialized as follows:- The method is initialized to "GET"
- The headers from this request are copied to the Builder, except for:
- Conditional headers (eg. If-Modified-Since)
- Range headers
- Expect headers
- Authorization headers
- Referrer headers
- If the request was Authenticated, an Authorization header will be set with a container generated token that will result in equivalent Authorization
- The query string from
getQueryString() - The
getRequestedSessionId()value, unless at the time of the callgetSession(boolean)has previously been called to create a newHttpSession, in which case the new session ID will be used as the PushBuilders requested session ID. - The source of the requested session id will be the same as for this request
- The builders Referer header will be set to
getRequestURL()plus anygetQueryString() - If
HttpServletResponse.addCookie(Cookie)has been called on the associated response, then a corresponding Cookie header will be added to the PushBuilder, unless theCookie.getMaxAge()is <=0, in which case the Cookie will be removed from the builder. - If this request has has the conditional headers If-Modified-Since or
If-None-Match then the
PushBuilderImpl.isConditional()header is set to true.
Each call to getPushBuilder() will return a new instance of a PushBuilder based off this Request. Any mutations to the returned PushBuilder are not reflected on future returns.
- Returns:
- A new PushBuilder or null if push is not supported
-
addEventListener
-
enterSession
public void enterSession(javax.servlet.http.HttpSession s) Remember a session that this request has just entered.- Parameters:
s- the session
-
leaveSession
Complete this request's access to a session.- Parameters:
session- the session
-
commitSession
A response is being committed for a session, potentially write the session out before the client receives the response.- Parameters:
session- the session
-
getParameters
-
extractQueryParameters
private void extractQueryParameters() -
isContentEncodingSupported
private boolean isContentEncodingSupported() -
extractContentParameters
private void extractContentParameters() -
extractFormParameters
-
lookupServerAttribute
-
getAsyncContext
public javax.servlet.AsyncContext getAsyncContext()- Specified by:
getAsyncContextin interfacejavax.servlet.ServletRequest
-
getHttpChannelState
-
getAttribute
Get Request Attribute.Also supports jetty specific attributes to gain access to Jetty APIs:
- org.eclipse.jetty.server.Server
- The Jetty Server instance
- org.eclipse.jetty.server.HttpChannel
- The HttpChannel for this request
- org.eclipse.jetty.server.HttpConnection
- The HttpConnection or null if another transport is used
- Specified by:
getAttributein interfacejavax.servlet.ServletRequest- See Also:
-
getAttributeNames
- Specified by:
getAttributeNamesin interfacejavax.servlet.ServletRequest
-
getAttributes
-
getAuthentication
Get the authentication.- Returns:
- the authentication
-
getAuthType
- Specified by:
getAuthTypein interfacejavax.servlet.http.HttpServletRequest
-
getCharacterEncoding
- Specified by:
getCharacterEncodingin interfacejavax.servlet.ServletRequest
-
getHttpChannel
- Returns:
- Returns the connection.
-
getContentLength
public int getContentLength()- Specified by:
getContentLengthin interfacejavax.servlet.ServletRequest
-
getContentLengthLong
public long getContentLengthLong()- Specified by:
getContentLengthLongin interfacejavax.servlet.ServletRequest
-
getContentRead
public long getContentRead() -
getContentType
- Specified by:
getContentTypein interfacejavax.servlet.ServletRequest
-
getContext
- Returns:
- The current
contextused for this request, ornullifsetContext(org.eclipse.jetty.server.handler.ContextHandler.Context)has not yet been called.
-
getErrorContext
- Returns:
- The current
contextused for this error handling for this request. If the request is asynchronous, then it is the context that called async. Otherwise it is the last non-null context passed to #setContext
-
getContextPath
- Specified by:
getContextPathin interfacejavax.servlet.http.HttpServletRequest
-
getCookies
public javax.servlet.http.Cookie[] getCookies()- Specified by:
getCookiesin interfacejavax.servlet.http.HttpServletRequest
-
getDateHeader
- Specified by:
getDateHeaderin interfacejavax.servlet.http.HttpServletRequest
-
getDispatcherType
public javax.servlet.DispatcherType getDispatcherType()- Specified by:
getDispatcherTypein interfacejavax.servlet.ServletRequest
-
getHeader
- Specified by:
getHeaderin interfacejavax.servlet.http.HttpServletRequest
-
getHeaderNames
- Specified by:
getHeaderNamesin interfacejavax.servlet.http.HttpServletRequest
-
getHeaders
- Specified by:
getHeadersin interfacejavax.servlet.http.HttpServletRequest
-
getInputState
public int getInputState()- Returns:
- Returns the inputState.
-
getInputStream
- Specified by:
getInputStreamin interfacejavax.servlet.ServletRequest- Throws:
IOException
-
getIntHeader
- Specified by:
getIntHeaderin interfacejavax.servlet.http.HttpServletRequest
-
getLocale
- Specified by:
getLocalein interfacejavax.servlet.ServletRequest
-
getLocales
- Specified by:
getLocalesin interfacejavax.servlet.ServletRequest
-
getLocalAddr
- Specified by:
getLocalAddrin interfacejavax.servlet.ServletRequest
-
getLocalName
- Specified by:
getLocalNamein interfacejavax.servlet.ServletRequest
-
getLocalPort
public int getLocalPort()- Specified by:
getLocalPortin interfacejavax.servlet.ServletRequest
-
getMethod
- Specified by:
getMethodin interfacejavax.servlet.http.HttpServletRequest
-
getParameter
- Specified by:
getParameterin interfacejavax.servlet.ServletRequest
-
getParameterMap
- Specified by:
getParameterMapin interfacejavax.servlet.ServletRequest
-
getParameterNames
- Specified by:
getParameterNamesin interfacejavax.servlet.ServletRequest
-
getParameterValues
- Specified by:
getParameterValuesin interfacejavax.servlet.ServletRequest
-
getQueryParameters
-
setQueryParameters
-
setContentParameters
-
resetParameters
public void resetParameters() -
getPathInfo
- Specified by:
getPathInfoin interfacejavax.servlet.http.HttpServletRequest
-
getPathTranslated
- Specified by:
getPathTranslatedin interfacejavax.servlet.http.HttpServletRequest
-
getProtocol
- Specified by:
getProtocolin interfacejavax.servlet.ServletRequest
-
getHttpVersion
-
getQueryEncoding
-
getQueryString
- Specified by:
getQueryStringin interfacejavax.servlet.http.HttpServletRequest
-
getReader
- Specified by:
getReaderin interfacejavax.servlet.ServletRequest- Throws:
IOException
-
getRealPath
- Specified by:
getRealPathin interfacejavax.servlet.ServletRequest
-
getRemoteInetSocketAddress
Access the underlying RemoteInetSocketAddressfor this request.- Returns:
- the remote
InetSocketAddressfor this request, or null if the request has no remote (seeServletRequest.getRemoteAddr()for conditions that result in no remote address)
-
getRemoteAddr
- Specified by:
getRemoteAddrin interfacejavax.servlet.ServletRequest
-
getRemoteHost
- Specified by:
getRemoteHostin interfacejavax.servlet.ServletRequest
-
getRemotePort
public int getRemotePort()- Specified by:
getRemotePortin interfacejavax.servlet.ServletRequest
-
getRemoteUser
- Specified by:
getRemoteUserin interfacejavax.servlet.http.HttpServletRequest
-
getRequestDispatcher
- Specified by:
getRequestDispatcherin interfacejavax.servlet.ServletRequest
-
getRequestedSessionId
- Specified by:
getRequestedSessionIdin interfacejavax.servlet.http.HttpServletRequest
-
getRequestURI
- Specified by:
getRequestURIin interfacejavax.servlet.http.HttpServletRequest
-
getRequestURL
- Specified by:
getRequestURLin interfacejavax.servlet.http.HttpServletRequest
-
getResponse
-
getRootURL
Reconstructs the URL the client used to make the request. The returned URL contains a protocol, server name, port number, and, but it does not include a path.Because this method returns a
StringBuffer, not a string, you can modify the URL easily, for example, to append path and query parameters. This method is useful for creating redirect messages and for reporting errors.- Returns:
- "scheme://host:port"
-
getScheme
- Specified by:
getSchemein interfacejavax.servlet.ServletRequest
-
getServerName
- Specified by:
getServerNamein interfacejavax.servlet.ServletRequest
-
findServerName
-
getServerPort
public int getServerPort()- Specified by:
getServerPortin interfacejavax.servlet.ServletRequest
-
findServerPort
private int findServerPort() -
getServletContext
public javax.servlet.ServletContext getServletContext()- Specified by:
getServletContextin interfacejavax.servlet.ServletRequest
-
getServletName
-
getServletPath
- Specified by:
getServletPathin interfacejavax.servlet.http.HttpServletRequest
-
getServletResponse
public javax.servlet.ServletResponse getServletResponse() -
changeSessionId
- Specified by:
changeSessionIdin interfacejavax.servlet.http.HttpServletRequest
-
onCompleted
public void onCompleted()Called when the request is fully finished being handled. For every session in any context that the session has accessed, ensure that the session is completed. -
onResponseCommit
public void onResponseCommit()Called when a response is about to be committed, ie sent back to the client -
getSession
Find a session that this request has already entered for the given SessionHandler- Parameters:
sessionHandler- the SessionHandler (ie context) to check- Returns:
-
getSession
public javax.servlet.http.HttpSession getSession()- Specified by:
getSessionin interfacejavax.servlet.http.HttpServletRequest
-
getSession
public javax.servlet.http.HttpSession getSession(boolean create) - Specified by:
getSessionin interfacejavax.servlet.http.HttpServletRequest
-
getSessionHandler
- Returns:
- Returns the sessionManager.
-
getTimeStamp
public long getTimeStamp()Get Request TimeStamp- Returns:
- The time that the request was received.
-
getHttpURI
- Returns:
- Returns the uri.
-
getOriginalURI
- Returns:
- Returns the original uri passed in metadata before customization/rewrite
-
setHttpURI
- Parameters:
uri- the URI to set
-
getUserIdentity
-
getResolvedUserIdentity
- Returns:
- The resolved user Identity, which may be null if the
Authenticationis notAuthentication.User(eg.Authentication.Deferred).
-
getUserIdentityScope
-
getUserPrincipal
- Specified by:
getUserPrincipalin interfacejavax.servlet.http.HttpServletRequest
-
isHandled
public boolean isHandled() -
isAsyncStarted
public boolean isAsyncStarted()- Specified by:
isAsyncStartedin interfacejavax.servlet.ServletRequest
-
isAsyncSupported
public boolean isAsyncSupported()- Specified by:
isAsyncSupportedin interfacejavax.servlet.ServletRequest
-
isRequestedSessionIdFromCookie
public boolean isRequestedSessionIdFromCookie()- Specified by:
isRequestedSessionIdFromCookiein interfacejavax.servlet.http.HttpServletRequest
-
isRequestedSessionIdFromUrl
public boolean isRequestedSessionIdFromUrl()- Specified by:
isRequestedSessionIdFromUrlin interfacejavax.servlet.http.HttpServletRequest
-
isRequestedSessionIdFromURL
public boolean isRequestedSessionIdFromURL()- Specified by:
isRequestedSessionIdFromURLin interfacejavax.servlet.http.HttpServletRequest
-
isRequestedSessionIdValid
public boolean isRequestedSessionIdValid()- Specified by:
isRequestedSessionIdValidin interfacejavax.servlet.http.HttpServletRequest
-
isSecure
public boolean isSecure()- Specified by:
isSecurein interfacejavax.servlet.ServletRequest
-
setSecure
public void setSecure(boolean secure) -
isUserInRole
- Specified by:
isUserInRolein interfacejavax.servlet.http.HttpServletRequest
-
setMetaData
- Parameters:
request- the Request metadata
-
getMetaData
-
hasMetaData
public boolean hasMetaData() -
recycle
protected void recycle() -
removeAttribute
- Specified by:
removeAttributein interfacejavax.servlet.ServletRequest
-
removeEventListener
-
setAsyncSupported
-
setAttribute
- Specified by:
setAttributein interfacejavax.servlet.ServletRequest
-
setAttributes
-
setAsyncAttributes
public void setAsyncAttributes() -
setAuthentication
Set the authentication.- Parameters:
authentication- the authentication to set
-
setCharacterEncoding
- Specified by:
setCharacterEncodingin interfacejavax.servlet.ServletRequest- Throws:
UnsupportedEncodingException
-
setCharacterEncodingUnchecked
-
setContentType
-
setContext
Set request context- Parameters:
context- context object
-
takeNewContext
public boolean takeNewContext()- Returns:
- True if this is the first call of
takeNewContext()since the lastsetContext(org.eclipse.jetty.server.handler.ContextHandler.Context)call.
-
setContextPath
Sets the "context path" for this request- Parameters:
contextPath- the context path for this request- See Also:
-
setCookies
public void setCookies(javax.servlet.http.Cookie[] cookies) - Parameters:
cookies- The cookies to set.
-
setDispatcherType
public void setDispatcherType(javax.servlet.DispatcherType type) -
setHandled
public void setHandled(boolean h) -
setMethod
- Parameters:
method- The method to set.
-
setHttpVersion
-
isHead
public boolean isHead() -
setPathInfo
- Parameters:
pathInfo- The pathInfo to set.
-
setQueryEncoding
Set the character encoding used for the query string. This call will effect the return of getQueryString and getParamaters. It must be called before any getParameter methods. The request attribute "org.eclipse.jetty.server.Request.queryEncoding" may be set as an alternate method of calling setQueryEncoding.- Parameters:
queryEncoding- the URI query character encoding
-
setQueryString
- Parameters:
queryString- The queryString to set.
-
setRemoteAddr
- Parameters:
addr- The address to set.
-
setRequestedSessionId
- Parameters:
requestedSessionId- The requestedSessionId to set.
-
setRequestedSessionIdFromCookie
public void setRequestedSessionIdFromCookie(boolean requestedSessionIdCookie) - Parameters:
requestedSessionIdCookie- The requestedSessionIdCookie to set.
-
setURIPathQuery
-
setScheme
- Parameters:
scheme- The scheme to set.
-
setAuthority
- Parameters:
host- The host to set.port- the port to set
-
setServletPath
- Parameters:
servletPath- The servletPath to set.
-
setSession
public void setSession(javax.servlet.http.HttpSession session) - Parameters:
session- The session to set.
-
setSessionHandler
- Parameters:
sessionHandler- The SessionHandler to set.
-
setTimeStamp
public void setTimeStamp(long ts) -
setUserIdentityScope
-
startAsync
- Specified by:
startAsyncin interfacejavax.servlet.ServletRequest- Throws:
IllegalStateException
-
startAsync
public javax.servlet.AsyncContext startAsync(javax.servlet.ServletRequest servletRequest, javax.servlet.ServletResponse servletResponse) throws IllegalStateException - Specified by:
startAsyncin interfacejavax.servlet.ServletRequest- Throws:
IllegalStateException
-
unwrap
public static javax.servlet.http.HttpServletRequest unwrap(javax.servlet.ServletRequest servletRequest) -
toString
-
authenticate
public boolean authenticate(javax.servlet.http.HttpServletResponse response) throws IOException, javax.servlet.ServletException - Specified by:
authenticatein interfacejavax.servlet.http.HttpServletRequest- Throws:
IOExceptionjavax.servlet.ServletException
-
getPart
public javax.servlet.http.Part getPart(String name) throws IOException, javax.servlet.ServletException - Specified by:
getPartin interfacejavax.servlet.http.HttpServletRequest- Throws:
IOExceptionjavax.servlet.ServletException
-
getParts
public Collection<javax.servlet.http.Part> getParts() throws IOException, javax.servlet.ServletException- Specified by:
getPartsin interfacejavax.servlet.http.HttpServletRequest- Throws:
IOExceptionjavax.servlet.ServletException
-
getParts
- Throws:
IOException
-
newMultiParts
- Throws:
IOException
-
login
- Specified by:
loginin interfacejavax.servlet.http.HttpServletRequest- Throws:
javax.servlet.ServletException
-
logout
public void logout() throws javax.servlet.ServletException- Specified by:
logoutin interfacejavax.servlet.http.HttpServletRequest- Throws:
javax.servlet.ServletException
-
mergeQueryParameters
-
upgrade
public <T extends javax.servlet.http.HttpUpgradeHandler> T upgrade(Class<T> handlerClass) throws IOException, javax.servlet.ServletException - Specified by:
upgradein interfacejavax.servlet.http.HttpServletRequest- Throws:
IOExceptionjavax.servlet.ServletException- See Also:
-