Interface HttpFilterResponse

All Known Implementing Classes:
HttpFilterResponseImpl

public interface HttpFilterResponse
  • Method Details

    • addCookie

      void addCookie(jakarta.servlet.http.Cookie arg0)
    • getCookies

      ArrayList<jakarta.servlet.http.Cookie> getCookies()
    • removeHeader

      void removeHeader(String name)
    • getHeader

      Attribute getHeader(String name)
    • addDateHeader

      void addDateHeader(String arg0, long arg1)
    • addHeader

      void addHeader(String arg0, String arg1)
    • addIntHeader

      void addIntHeader(String arg0, int arg1)
    • containsHeader

      boolean containsHeader(String arg0)
    • encodeRedirectURL

      String encodeRedirectURL(String arg0)
    • encodeRedirectUrl

      String encodeRedirectUrl(String arg0)
    • encodeURL

      String encodeURL(String arg0)
    • encodeUrl

      String encodeUrl(String arg0)
    • sendError

      void sendError(int arg0) throws IOException
      Throws:
      IOException
    • sendError

      void sendError(int arg0, String arg1) throws IOException
      Throws:
      IOException
    • sendRedirect

      void sendRedirect(String arg0) throws IOException
      Throws:
      IOException
    • setDateHeader

      void setDateHeader(String arg0, long arg1)
    • setHeader

      void setHeader(String arg0, String arg1)
    • setIntHeader

      void setIntHeader(String arg0, int arg1)
    • setStatus

      void setStatus(int arg0)
    • setStatus

      void setStatus(int arg0, String arg1)
    • getServletResponse

      jakarta.servlet.http.HttpServletResponse getServletResponse()
    • getCharacterEncoding

      String getCharacterEncoding()
    • getLocale

      Locale getLocale()
    • isCommitted

      boolean isCommitted()
    • setContentType

      void setContentType(String arg0)
    • setLocale

      void setLocale(Locale arg0)
    • getWriter

      PrintWriter getWriter() throws IOException
      Throws:
      IOException
    • getOutputStream

      OutputStream getOutputStream() throws IOException
      Throws:
      IOException
    • setCharacterEncoding

      void setCharacterEncoding(String encType)