org.apache.cactus.server
public class: HttpServletRequestWrapper [javadoc |
source]
java.lang.Object
org.apache.cactus.server.AbstractHttpServletRequestWrapper
org.apache.cactus.server.AbstractHttpServletRequestWrapper23
org.apache.cactus.server.HttpServletRequestWrapper
All Implemented Interfaces:
HttpServletRequest
Provide implementation of
javax.servlet.http.HttpServletRequest for the Servlet 2.4
API specifications.
| Methods from org.apache.cactus.server.AbstractHttpServletRequestWrapper: |
|---|
|
getAttribute, getAttributeNames, getAuthType, getCharacterEncoding, getContentLength, getContentType, getContextPath, getCookies, getDateHeader, getHeader, getHeaderNames, getHeaders, getInputStream, getIntHeader, getLocale, getLocales, getMethod, getOriginalRequest, getParameter, getParameterNames, getParameterValues, getPathInfo, getPathTranslated, getProtocol, getQueryString, getReader, getRealPath, getRemoteAddr, getRemoteHost, getRemoteUser, getRequestDispatcher, getRequestURI, getRequestedSessionId, getScheme, getServerName, getServerPort, getServletPath, getSession, getSession, getUserPrincipal, isRequestedSessionIdFromCookie, isRequestedSessionIdFromURL, isRequestedSessionIdFromUrl, isRequestedSessionIdValid, isSecure, isUserInRole, newInstance, removeAttribute, setAttribute, setRemoteHostName, setRemoteIPAddress, setRemoteUser |
| Method from org.apache.cactus.server.HttpServletRequestWrapper Detail: |
public String getLocalAddr() {
// TODO: Support simulation URL
return this.request.getLocalAddr();
}
|
public String getLocalName() {
// TODO: Support simulation URL
return this.request.getLocalName();
}
|
public int getLocalPort() {
// TODO: Support simulation URL
return this.request.getLocalPort();
}
|
public int getRemotePort() {
// TODO: Support simulation URL
return this.request.getRemotePort();
}
|