Class ChfHttpServletResponseAdapter

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

    public class ChfHttpServletResponseAdapter
    extends Object
    implements javax.servlet.http.HttpServletResponse
    Just enough of a HttpServletResponse wrapper around a CHF Response to keep the AM SAML2 components happy.
    • Method Detail

      • addCookie

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

        public boolean containsHeader​(String name)
        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(since="Java Servlet 2.1")
        public String encodeUrl​(String url)
        Deprecated.
        As of version 2.1, use encodeURL(String url) instead
        See HttpServletResponse.encodeUrl(String).
        Specified by:
        encodeUrl in interface javax.servlet.http.HttpServletResponse
        Parameters:
        url - the url to be encoded.
        Returns:
        the encoded URL if encoding is needed; the unchanged URL otherwise.
      • encodeRedirectUrl

        @Deprecated(since="Java Servlet 2.1")
        public String encodeRedirectUrl​(String url)
        Deprecated.
        As of version 2.1, use encodeRedirectURL(String url) instead
        See HttpServletResponse.encodeRedirectURL(String).
        Specified by:
        encodeRedirectUrl in interface javax.servlet.http.HttpServletResponse
        Parameters:
        url - the url to be encoded.
        Returns:
        the encoded URL if encoding is needed; the unchanged URL otherwise.
      • sendError

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

        public void sendError​(int sc)
        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 date)
        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
      • setHeader

        public void setHeader​(String name,
                              String value)
        Specified by:
        setHeader 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

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

        @Deprecated(since="Java Servlet 2.1")
        public void setStatus​(int status,
                              String reason)
        Deprecated.
        As of version 2.1, due to ambiguous meaning of the message parameter. To set a status code use setStatus(int), to send an error with a description use sendError(int, String). Sets the status code and message for this response.
        See HttpServletResponse.setStatus(int, String).
        Specified by:
        setStatus in interface javax.servlet.http.HttpServletResponse
        Parameters:
        status - the status code
        reason - the status message
      • getStatus

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

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

        public Collection<String> getHeaders​(String name)
        Specified by:
        getHeaders 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
      • getOutputStream

        public javax.servlet.ServletOutputStream getOutputStream()
        Specified by:
        getOutputStream in interface javax.servlet.ServletResponse
      • getWriter

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

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

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

        public void setContentLengthLong​(long len)
        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()
                         throws IOException
        Specified by:
        flushBuffer in interface javax.servlet.ServletResponse
        Throws:
        IOException
      • 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 loc)
        Specified by:
        setLocale in interface javax.servlet.ServletResponse
      • getLocale

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