org.orbeon.oxf.pipeline.api
Interface ExternalContext.Request

Enclosing interface:
ExternalContext

public static interface ExternalContext.Request


Method Summary
 Map getAttributesMap()
           
 String getAuthType()
           
 String getCharacterEncoding()
           
 String getContainerNamespace()
           
 String getContainerType()
           
 int getContentLength()
           
 String getContentType()
           
 String getContextPath()
           
 Map getHeaderMap()
           
 Map getHeaderValuesMap()
           
 InputStream getInputStream()
           
 Locale getLocale()
           
 Enumeration getLocales()
           
 String getMethod()
           
 Object getNativeRequest()
           
 Map getParameterMap()
           
 String getPathInfo()
           
 String getPathTranslated()
           
 String getPortletMode()
           
 String getProtocol()
           
 String getQueryString()
           
 Reader getReader()
           
 String getRemoteAddr()
           
 String getRemoteHost()
           
 String getRemoteUser()
           
 String getRequestedSessionId()
           
 String getRequestPath()
           
 String getRequestURI()
           
 String getRequestURL()
           
 String getScheme()
           
 String getServerName()
           
 int getServerPort()
           
 String getServletPath()
           
 Principal getUserPrincipal()
           
 String getWindowState()
           
 boolean isRequestedSessionIdValid()
           
 boolean isSecure()
           
 boolean isUserInRole(String role)
           
 void sessionInvalidate()
           
 

Method Detail

getContainerType

public String getContainerType()

getContainerNamespace

public String getContainerNamespace()

getPathInfo

public String getPathInfo()

getRequestPath

public String getRequestPath()

getContextPath

public String getContextPath()

getServletPath

public String getServletPath()

getAttributesMap

public Map getAttributesMap()

getHeaderMap

public Map getHeaderMap()

getHeaderValuesMap

public Map getHeaderValuesMap()

getParameterMap

public Map getParameterMap()

getCharacterEncoding

public String getCharacterEncoding()

getContentLength

public int getContentLength()

getContentType

public String getContentType()

getInputStream

public InputStream getInputStream()
                           throws IOException
Throws:
IOException

getReader

public Reader getReader()
                 throws IOException
Throws:
IOException

getProtocol

public String getProtocol()

getRemoteHost

public String getRemoteHost()

getRemoteAddr

public String getRemoteAddr()

getScheme

public String getScheme()

getMethod

public String getMethod()

getServerName

public String getServerName()

getServerPort

public int getServerPort()

sessionInvalidate

public void sessionInvalidate()

isRequestedSessionIdValid

public boolean isRequestedSessionIdValid()

getRequestedSessionId

public String getRequestedSessionId()

getAuthType

public String getAuthType()

isSecure

public boolean isSecure()

getRemoteUser

public String getRemoteUser()

isUserInRole

public boolean isUserInRole(String role)

getUserPrincipal

public Principal getUserPrincipal()

getLocale

public Locale getLocale()

getLocales

public Enumeration getLocales()

getPathTranslated

public String getPathTranslated()

getQueryString

public String getQueryString()

getRequestURI

public String getRequestURI()

getRequestURL

public String getRequestURL()

getPortletMode

public String getPortletMode()

getWindowState

public String getWindowState()

getNativeRequest

public Object getNativeRequest()