org.apache.commons.chain.web.servlet
Class MockHttpServletRequest
java.lang.Object
org.apache.commons.chain.web.servlet.MockHttpServletRequest
- All Implemented Interfaces:
- HttpServletRequest, ServletRequest
public class MockHttpServletRequest
- extends Object
- implements HttpServletRequest
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
attributes
protected HashMap attributes
contextPath
protected String contextPath
headers
protected HashMap headers
cookies
protected Cookie[] cookies
locale
protected Locale locale
parameters
protected HashMap parameters
pathInfo
protected String pathInfo
principal
protected Principal principal
queryString
protected String queryString
servletPath
protected String servletPath
session
protected HttpSession session
MockHttpServletRequest
public MockHttpServletRequest()
MockHttpServletRequest
public MockHttpServletRequest(HttpSession session)
MockHttpServletRequest
public MockHttpServletRequest(String contextPath,
String servletPath,
String pathInfo,
String queryString)
MockHttpServletRequest
public MockHttpServletRequest(String contextPath,
String servletPath,
String pathInfo,
String queryString,
HttpSession session)
addHeader
public void addHeader(String name,
String value)
addParameter
public void addParameter(String name,
String value)
addCookie
public void addCookie(String name,
String value)
addCookie
public void addCookie(Cookie cookie)
setHttpSession
public void setHttpSession(HttpSession session)
setLocale
public void setLocale(Locale locale)
setPathElements
public void setPathElements(String contextPath,
String servletPath,
String pathInfo,
String queryString)
setUserPrincipal
public void setUserPrincipal(Principal principal)
getAuthType
public String getAuthType()
- Specified by:
getAuthType in interface HttpServletRequest
getContextPath
public String getContextPath()
- Specified by:
getContextPath in interface HttpServletRequest
getCookies
public Cookie[] getCookies()
- Specified by:
getCookies in interface HttpServletRequest
getDateHeader
public long getDateHeader(String name)
- Specified by:
getDateHeader in interface HttpServletRequest
getHeader
public String getHeader(String name)
- Specified by:
getHeader in interface HttpServletRequest
getHeaderNames
public Enumeration getHeaderNames()
- Specified by:
getHeaderNames in interface HttpServletRequest
getHeaders
public Enumeration getHeaders(String name)
- Specified by:
getHeaders in interface HttpServletRequest
getIntHeader
public int getIntHeader(String name)
- Specified by:
getIntHeader in interface HttpServletRequest
getMethod
public String getMethod()
- Specified by:
getMethod in interface HttpServletRequest
getPathInfo
public String getPathInfo()
- Specified by:
getPathInfo in interface HttpServletRequest
getPathTranslated
public String getPathTranslated()
- Specified by:
getPathTranslated in interface HttpServletRequest
getQueryString
public String getQueryString()
- Specified by:
getQueryString in interface HttpServletRequest
getRemoteUser
public String getRemoteUser()
- Specified by:
getRemoteUser in interface HttpServletRequest
getRequestedSessionId
public String getRequestedSessionId()
- Specified by:
getRequestedSessionId in interface HttpServletRequest
getRequestURI
public String getRequestURI()
- Specified by:
getRequestURI in interface HttpServletRequest
getRequestURL
public StringBuffer getRequestURL()
- Specified by:
getRequestURL in interface HttpServletRequest
getServletPath
public String getServletPath()
- Specified by:
getServletPath in interface HttpServletRequest
getSession
public HttpSession getSession()
- Specified by:
getSession in interface HttpServletRequest
getSession
public HttpSession getSession(boolean create)
- Specified by:
getSession in interface HttpServletRequest
getUserPrincipal
public Principal getUserPrincipal()
- Specified by:
getUserPrincipal in interface HttpServletRequest
isRequestedSessionIdFromCookie
public boolean isRequestedSessionIdFromCookie()
- Specified by:
isRequestedSessionIdFromCookie in interface HttpServletRequest
isRequestedSessionIdFromUrl
public boolean isRequestedSessionIdFromUrl()
- Specified by:
isRequestedSessionIdFromUrl in interface HttpServletRequest
isRequestedSessionIdFromURL
public boolean isRequestedSessionIdFromURL()
- Specified by:
isRequestedSessionIdFromURL in interface HttpServletRequest
isRequestedSessionIdValid
public boolean isRequestedSessionIdValid()
- Specified by:
isRequestedSessionIdValid in interface HttpServletRequest
isUserInRole
public boolean isUserInRole(String role)
- Specified by:
isUserInRole in interface HttpServletRequest
getAttribute
public Object getAttribute(String name)
- Specified by:
getAttribute in interface ServletRequest
getAttributeNames
public Enumeration getAttributeNames()
- Specified by:
getAttributeNames in interface ServletRequest
getCharacterEncoding
public String getCharacterEncoding()
- Specified by:
getCharacterEncoding in interface ServletRequest
getContentLength
public int getContentLength()
- Specified by:
getContentLength in interface ServletRequest
getContentType
public String getContentType()
- Specified by:
getContentType in interface ServletRequest
getInputStream
public ServletInputStream getInputStream()
- Specified by:
getInputStream in interface ServletRequest
getLocale
public Locale getLocale()
- Specified by:
getLocale in interface ServletRequest
getLocales
public Enumeration getLocales()
- Specified by:
getLocales in interface ServletRequest
getLocalAddr
public String getLocalAddr()
getLocalName
public String getLocalName()
getLocalPort
public int getLocalPort()
getParameter
public String getParameter(String name)
- Specified by:
getParameter in interface ServletRequest
getParameterMap
public Map getParameterMap()
- Specified by:
getParameterMap in interface ServletRequest
getParameterNames
public Enumeration getParameterNames()
- Specified by:
getParameterNames in interface ServletRequest
getParameterValues
public String[] getParameterValues(String name)
- Specified by:
getParameterValues in interface ServletRequest
getProtocol
public String getProtocol()
- Specified by:
getProtocol in interface ServletRequest
getReader
public BufferedReader getReader()
- Specified by:
getReader in interface ServletRequest
getRealPath
public String getRealPath(String path)
- Specified by:
getRealPath in interface ServletRequest
getRemoteAddr
public String getRemoteAddr()
- Specified by:
getRemoteAddr in interface ServletRequest
getRemoteHost
public String getRemoteHost()
- Specified by:
getRemoteHost in interface ServletRequest
getRemotePort
public int getRemotePort()
getRequestDispatcher
public RequestDispatcher getRequestDispatcher(String path)
- Specified by:
getRequestDispatcher in interface ServletRequest
getScheme
public String getScheme()
- Specified by:
getScheme in interface ServletRequest
getServerName
public String getServerName()
- Specified by:
getServerName in interface ServletRequest
getServerPort
public int getServerPort()
- Specified by:
getServerPort in interface ServletRequest
isSecure
public boolean isSecure()
- Specified by:
isSecure in interface ServletRequest
removeAttribute
public void removeAttribute(String name)
- Specified by:
removeAttribute in interface ServletRequest
setAttribute
public void setAttribute(String name,
Object value)
- Specified by:
setAttribute in interface ServletRequest
setCharacterEncoding
public void setCharacterEncoding(String name)
- Specified by:
setCharacterEncoding in interface ServletRequest
Copyright © 2003-2010 The Apache Software Foundation. All Rights Reserved.