Interface HttpFilterRequest

All Known Implementing Classes:
HttpFilterRequestImpl

public interface HttpFilterRequest
  • Method Details

    • getAuthInfo

      AuthInfo getAuthInfo()
    • getContextPath

      String getContextPath()
    • getCookieNames

      Set<String> getCookieNames()
    • getCookies

      ArrayList<jakarta.servlet.http.Cookie> getCookies(String name)
    • addCookie

      void addCookie(jakarta.servlet.http.Cookie cookie)
    • removeCookie

      void removeCookie(String name)
    • getHeaderNames

      Iterator<String> getHeaderNames()
    • getHeader

      Attribute getHeader(String name)
    • addHeader

      void addHeader(Attribute header)
    • removeHeader

      void removeHeader(String name)
    • getMethod

      String getMethod()
    • getPathInfo

      String getPathInfo()
    • getPathTranslated

      String getPathTranslated()
    • getQueryString

      String getQueryString()
    • getRequestURI

      String getRequestURI()
    • getRequestURL

      StringBuffer getRequestURL()
    • getRequestedSessionId

      String getRequestedSessionId()
    • getServletPath

      String getServletPath()
    • getSession

      jakarta.servlet.http.HttpSession getSession()
    • getSession

      jakarta.servlet.http.HttpSession getSession(boolean arg0)
    • isRequestedSessionIdFromCookie

      boolean isRequestedSessionIdFromCookie()
    • isRequestedSessionIdFromURL

      boolean isRequestedSessionIdFromURL()
    • isRequestedSessionIdFromUrl

      boolean isRequestedSessionIdFromUrl()
    • isRequestedSessionIdValid

      boolean isRequestedSessionIdValid()
    • getAttribute

      Object getAttribute(String arg0)
    • getAttributeNames

      Enumeration getAttributeNames()
    • getCharacterEncoding

      String getCharacterEncoding()
    • getContentLength

      int getContentLength()
    • getContentType

      String getContentType()
    • getInputStream

      jakarta.servlet.ServletInputStream getInputStream() throws IOException
      Throws:
      IOException
    • getLocale

      Locale getLocale()
    • getLocales

      Enumeration getLocales()
    • getParameterNames

      Iterator<String> getParameterNames()
    • getParameter

      Attribute getParameter(String name)
    • addParameter

      void addParameter(Attribute attrib)
    • removeParameter

      void removeParameter(String name)
    • getProtocol

      String getProtocol()
    • getReader

      BufferedReader getReader() throws IOException
      Throws:
      IOException
    • getRealPath

      String getRealPath(String arg0)
    • getRemoteAddr

      String getRemoteAddr()
    • getRemoteHost

      String getRemoteHost()
    • getRequestDispatcher

      jakarta.servlet.RequestDispatcher getRequestDispatcher(String arg0)
    • getScheme

      String getScheme()
    • getServerName

      String getServerName()
    • getServerPort

      int getServerPort()
    • isSecure

      boolean isSecure()
    • removeAttribute

      void removeAttribute(String arg0)
    • setAttribute

      void setAttribute(String arg0, Object arg1)
    • setCharacterEncoding

      void setCharacterEncoding(String arg0) throws UnsupportedEncodingException
      Throws:
      UnsupportedEncodingException
    • isMultiPart

      boolean isMultiPart()
    • isParamsInBody

      boolean isParamsInBody()
    • getFiles

      HashMap<String,ArrayList<org.apache.commons.fileupload2.core.FileItem>> getFiles()
    • getServletRequest

      jakarta.servlet.http.HttpServletRequest getServletRequest()
    • renameAttribute

      void renameAttribute(String oldName, String newName)
    • getQueryStringParams

      List<NVP> getQueryStringParams()
    • getFormParams

      List<String> getFormParams()
    • getFormParamVals

      List<String> getFormParamVals(String name)