Package com.ibm.websphere.servlet.filter
Class ChainedRequest
- java.lang.Object
- 
- javax.servlet.ServletRequestWrapper
- 
- javax.servlet.http.HttpServletRequestWrapper
- 
- com.ibm.websphere.servlet.filter.ChainedRequest
 
 
 
- 
- All Implemented Interfaces:
- javax.servlet.http.HttpServletRequest,- javax.servlet.ServletRequest
 
 public class ChainedRequest extends javax.servlet.http.HttpServletRequestWrapperDeprecated.Application developers requiring this functionality should implement this using javax.servlet.filter classes.This class adapts a response from a previous servlet/jsp into a request that may be passed on for processing into another servlet/jsp. The request object passed into the constructor should be the original request so that state information can be preserved correctly (Deprecated since WebSphere 6.0).
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description intgetContentLength()Deprecated.java.lang.StringgetContentType()Deprecated.javax.servlet.http.Cookie[]getCookies()Deprecated.longgetDateHeader(java.lang.String name)Deprecated.java.lang.StringgetHeader(java.lang.String name)Deprecated.java.util.EnumerationgetHeaderNames()Deprecated.javax.servlet.ServletInputStreamgetInputStream()Deprecated.intgetIntHeader(java.lang.String name)Deprecated.java.lang.StringgetParameter(java.lang.String name)Deprecated.java.util.EnumerationgetParameterNames()Deprecated.java.lang.String[]getParameterValues(java.lang.String name)Deprecated.javax.servlet.http.HttpServletRequestgetProxiedHttpServletRequest()Deprecated.java.io.BufferedReadergetReader()Deprecated.- 
Methods inherited from class javax.servlet.http.HttpServletRequestWrapperauthenticate, getAuthType, getContextPath, getHeaders, getMethod, getPart, getParts, getPathInfo, getPathTranslated, getQueryString, getRemoteUser, getRequestedSessionId, getRequestURI, getRequestURL, getServletPath, getSession, getSession, getUserPrincipal, isRequestedSessionIdFromCookie, isRequestedSessionIdFromUrl, isRequestedSessionIdFromURL, isRequestedSessionIdValid, isUserInRole, login, logout
 - 
Methods inherited from class javax.servlet.ServletRequestWrappergetAsyncContext, getAttribute, getAttributeNames, getCharacterEncoding, getDispatcherType, getLocalAddr, getLocale, getLocales, getLocalName, getLocalPort, getParameterMap, getProtocol, getRealPath, getRemoteAddr, getRemoteHost, getRemotePort, getRequest, getRequestDispatcher, getScheme, getServerName, getServerPort, getServletContext, isAsyncStarted, isAsyncSupported, isSecure, isWrapperFor, isWrapperFor, removeAttribute, setAttribute, setCharacterEncoding, setRequest, startAsync, startAsync
 - 
Methods inherited from class java.lang.Objectequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface javax.servlet.ServletRequestgetAsyncContext, getAttribute, getAttributeNames, getCharacterEncoding, getDispatcherType, getLocalAddr, getLocale, getLocales, getLocalName, getLocalPort, getParameterMap, getProtocol, getRealPath, getRemoteAddr, getRemoteHost, getRemotePort, getRequestDispatcher, getScheme, getServerName, getServerPort, getServletContext, isAsyncStarted, isAsyncSupported, isSecure, removeAttribute, setAttribute, setCharacterEncoding, startAsync, startAsync
 
- 
 
- 
- 
- 
Method Detail- 
getCookiespublic javax.servlet.http.Cookie[] getCookies() Deprecated.- Specified by:
- getCookiesin interface- javax.servlet.http.HttpServletRequest
- Overrides:
- getCookiesin class- javax.servlet.http.HttpServletRequestWrapper
 
 - 
getInputStreampublic javax.servlet.ServletInputStream getInputStream() throws java.io.IOExceptionDeprecated.- Specified by:
- getInputStreamin interface- javax.servlet.ServletRequest
- Overrides:
- getInputStreamin class- javax.servlet.ServletRequestWrapper
- Throws:
- java.io.IOException
 
 - 
getReaderpublic java.io.BufferedReader getReader() throws java.io.IOExceptionDeprecated.- Specified by:
- getReaderin interface- javax.servlet.ServletRequest
- Overrides:
- getReaderin class- javax.servlet.ServletRequestWrapper
- Throws:
- java.io.IOException
 
 - 
getProxiedHttpServletRequestpublic javax.servlet.http.HttpServletRequest getProxiedHttpServletRequest() Deprecated.
 - 
getHeaderNamespublic java.util.Enumeration getHeaderNames() Deprecated.- Specified by:
- getHeaderNamesin interface- javax.servlet.http.HttpServletRequest
- Overrides:
- getHeaderNamesin class- javax.servlet.http.HttpServletRequestWrapper
 
 - 
getHeaderpublic java.lang.String getHeader(java.lang.String name) Deprecated.- Specified by:
- getHeaderin interface- javax.servlet.http.HttpServletRequest
- Overrides:
- getHeaderin class- javax.servlet.http.HttpServletRequestWrapper
 
 - 
getIntHeaderpublic int getIntHeader(java.lang.String name) throws java.lang.NumberFormatExceptionDeprecated.- Specified by:
- getIntHeaderin interface- javax.servlet.http.HttpServletRequest
- Overrides:
- getIntHeaderin class- javax.servlet.http.HttpServletRequestWrapper
- Throws:
- java.lang.NumberFormatException
 
 - 
getDateHeaderpublic long getDateHeader(java.lang.String name) Deprecated.- Specified by:
- getDateHeaderin interface- javax.servlet.http.HttpServletRequest
- Overrides:
- getDateHeaderin class- javax.servlet.http.HttpServletRequestWrapper
 
 - 
getContentLengthpublic int getContentLength() Deprecated.- Specified by:
- getContentLengthin interface- javax.servlet.ServletRequest
- Overrides:
- getContentLengthin class- javax.servlet.ServletRequestWrapper
 
 - 
getContentTypepublic java.lang.String getContentType() Deprecated.- Specified by:
- getContentTypein interface- javax.servlet.ServletRequest
- Overrides:
- getContentTypein class- javax.servlet.ServletRequestWrapper
 
 - 
getParameterpublic java.lang.String getParameter(java.lang.String name) Deprecated.- Specified by:
- getParameterin interface- javax.servlet.ServletRequest
- Overrides:
- getParameterin class- javax.servlet.ServletRequestWrapper
 
 - 
getParameterNamespublic java.util.Enumeration getParameterNames() Deprecated.- Specified by:
- getParameterNamesin interface- javax.servlet.ServletRequest
- Overrides:
- getParameterNamesin class- javax.servlet.ServletRequestWrapper
 
 - 
getParameterValuespublic java.lang.String[] getParameterValues(java.lang.String name) Deprecated.- Specified by:
- getParameterValuesin interface- javax.servlet.ServletRequest
- Overrides:
- getParameterValuesin class- javax.servlet.ServletRequestWrapper
 
 
- 
 
-