Class HttpServletResponseFake

  • All Implemented Interfaces:
    javax.servlet.http.HttpServletResponse, javax.servlet.ServletResponse

    public final class HttpServletResponseFake
    extends Object
    implements javax.servlet.http.HttpServletResponse
    Fake HttpServletResponse (for unit tests).
    Since:
    1.14
    • Constructor Detail

      • HttpServletResponseFake

        public HttpServletResponseFake​(Response resp)
        Ctor.
        Parameters:
        resp - A Takes Response object
    • Method Detail

      • addCookie

        public void addCookie​(javax.servlet.http.Cookie cookie)
        Specified by:
        addCookie in interface javax.servlet.http.HttpServletResponse
      • setHeader

        public void setHeader​(String name,
                              String value)
        Specified by:
        setHeader in interface javax.servlet.http.HttpServletResponse
      • setStatus

        public void setStatus​(int code)
        Specified by:
        setStatus in interface javax.servlet.http.HttpServletResponse
      • sendError

        public void sendError​(int code,
                              String reason)
        Specified by:
        sendError in interface javax.servlet.http.HttpServletResponse
      • getHeaders

        public Collection<String> getHeaders​(String header)
        Specified by:
        getHeaders in interface javax.servlet.http.HttpServletResponse
      • getOutputStream

        public javax.servlet.ServletOutputStream getOutputStream()
                                                          throws IOException
        Specified by:
        getOutputStream in interface javax.servlet.ServletResponse
        Throws:
        IOException
      • getHeader

        public String getHeader​(String header)
        Specified by:
        getHeader in interface javax.servlet.http.HttpServletResponse
      • containsHeader

        public boolean containsHeader​(String header)
        Specified by:
        containsHeader in interface javax.servlet.http.HttpServletResponse
      • encodeURL

        public String encodeURL​(String url)
        Specified by:
        encodeURL in interface javax.servlet.http.HttpServletResponse
      • encodeRedirectURL

        public String encodeRedirectURL​(String url)
        Specified by:
        encodeRedirectURL in interface javax.servlet.http.HttpServletResponse
      • encodeUrl

        @Deprecated
        public String encodeUrl​(String url)
        Deprecated.
        It not should be used
        Encode a URL.
        Specified by:
        encodeUrl in interface javax.servlet.http.HttpServletResponse
        Parameters:
        url - URL to be encoded
        Returns:
        The encoded URL
      • encodeRedirectUrl

        @Deprecated
        public String encodeRedirectUrl​(String url)
        Deprecated.
        It not should be used
        Encode a redirect URL.
        Specified by:
        encodeRedirectUrl in interface javax.servlet.http.HttpServletResponse
        Parameters:
        url - URL to be encoded
        Returns:
        The encoded redirect URL
      • sendError

        public void sendError​(int code)
        Specified by:
        sendError in interface javax.servlet.http.HttpServletResponse
      • sendRedirect

        public void sendRedirect​(String location)
        Specified by:
        sendRedirect in interface javax.servlet.http.HttpServletResponse
      • setDateHeader

        public void setDateHeader​(String name,
                                  long time)
        Specified by:
        setDateHeader in interface javax.servlet.http.HttpServletResponse
      • addDateHeader

        public void addDateHeader​(String name,
                                  long date)
        Specified by:
        addDateHeader in interface javax.servlet.http.HttpServletResponse
      • addHeader

        public void addHeader​(String name,
                              String value)
        Specified by:
        addHeader in interface javax.servlet.http.HttpServletResponse
      • setIntHeader

        public void setIntHeader​(String name,
                                 int value)
        Specified by:
        setIntHeader in interface javax.servlet.http.HttpServletResponse
      • addIntHeader

        public void addIntHeader​(String name,
                                 int value)
        Specified by:
        addIntHeader in interface javax.servlet.http.HttpServletResponse
      • setStatus

        @Deprecated
        public void setStatus​(int code,
                              String reason)
        Deprecated.
        It not should be used
        Set the response code status and reason.
        Specified by:
        setStatus in interface javax.servlet.http.HttpServletResponse
        Parameters:
        code - The status code
        reason - The reason originates this code
      • getStatus

        public int getStatus()
        Specified by:
        getStatus in interface javax.servlet.http.HttpServletResponse
      • getHeaderNames

        public Collection<String> getHeaderNames()
        Specified by:
        getHeaderNames in interface javax.servlet.http.HttpServletResponse
      • getCharacterEncoding

        public String getCharacterEncoding()
        Specified by:
        getCharacterEncoding in interface javax.servlet.ServletResponse
      • getContentType

        public String getContentType()
        Specified by:
        getContentType in interface javax.servlet.ServletResponse
      • getWriter

        public PrintWriter getWriter()
        Specified by:
        getWriter in interface javax.servlet.ServletResponse
      • setCharacterEncoding

        public void setCharacterEncoding​(String encoding)
        Specified by:
        setCharacterEncoding in interface javax.servlet.ServletResponse
      • setContentLength

        public void setContentLength​(int length)
        Specified by:
        setContentLength in interface javax.servlet.ServletResponse
      • setContentLengthLong

        public void setContentLengthLong​(long length)
        Specified by:
        setContentLengthLong in interface javax.servlet.ServletResponse
      • setContentType

        public void setContentType​(String type)
        Specified by:
        setContentType in interface javax.servlet.ServletResponse
      • setBufferSize

        public void setBufferSize​(int size)
        Specified by:
        setBufferSize in interface javax.servlet.ServletResponse
      • getBufferSize

        public int getBufferSize()
        Specified by:
        getBufferSize in interface javax.servlet.ServletResponse
      • flushBuffer

        public void flushBuffer()
        Specified by:
        flushBuffer in interface javax.servlet.ServletResponse
      • resetBuffer

        public void resetBuffer()
        Specified by:
        resetBuffer in interface javax.servlet.ServletResponse
      • isCommitted

        public boolean isCommitted()
        Specified by:
        isCommitted in interface javax.servlet.ServletResponse
      • reset

        public void reset()
        Specified by:
        reset in interface javax.servlet.ServletResponse
      • setLocale

        public void setLocale​(Locale locale)
        Specified by:
        setLocale in interface javax.servlet.ServletResponse
      • getLocale

        public Locale getLocale()
        Specified by:
        getLocale in interface javax.servlet.ServletResponse