org.apache.xmlrpc.webserver

Class HttpServletResponseImpl

public class HttpServletResponseImpl extends Object implements HttpServletResponse

Stub implementation of a {@link javax.servlet.http.HttpServletResponse} with lots of unimplemented methods. I implemented only those, which are required for testing the {@link org.apache.xmlrpc.webserver.XmlRpcServlet}. Perhaps someone else is adding more at a later time?
Constructor Summary
HttpServletResponseImpl(Socket pSocket)
Creates a new instance.
Method Summary
voidaddCookie(Cookie pCookie)
voidaddDateHeader(String pHeader, long pDate)
voidaddHeader(String pHeader, String pValue)
voidaddIntHeader(String pHeader, int pValue)
booleancontainsHeader(String pHeader)
StringencodeRedirectUrl(String pURL)
StringencodeRedirectURL(String pURL)
StringencodeUrl(String pURL)
StringencodeURL(String pURL)
voidflushBuffer()
intgetBufferSize()
StringgetCharacterEncoding()
StringgetContentType()

Returns the content type used for the MIME body sent in this response.

LocalegetLocale()
ServletOutputStreamgetOutputStream()
static StringgetStatusMessage(int pStatusCode)
Returns a default message for a given HTTP status code.
PrintWritergetWriter()
booleanisCommitted()
voidreset()
voidresetBuffer()
voidsendError(int pStatusCode)
voidsendError(int pStatusCode, String pMessage)
protected voidsendError(int pStatusCode, String pMessage, String pDescription)
voidsendRedirect(String arg0)
voidsetBufferSize(int pBufferSize)
voidsetCharacterEncoding(String pCharset)

Sets the character encoding (MIME charset) of the response being sent to the client, for example, to UTF-8.

voidsetContentLength(int pContentLength)
voidsetContentType(String pType)
voidsetDateHeader(String arg0, long arg1)
voidsetHeader(String pHeader, String pValue)
voidsetIntHeader(String pHeader, int pValue)
voidsetLocale(Locale pLocale)
voidsetStatus(int pStatusCode)
voidsetStatus(int pStatusCode, String pMessage)

Constructor Detail

HttpServletResponseImpl

public HttpServletResponseImpl(Socket pSocket)
Creates a new instance.

Parameters: pSocket The clients socket.

Throws: IOException Accessing the sockets output stream failed.

Method Detail

addCookie

public void addCookie(Cookie pCookie)

addDateHeader

public void addDateHeader(String pHeader, long pDate)

addHeader

public void addHeader(String pHeader, String pValue)

addIntHeader

public void addIntHeader(String pHeader, int pValue)

containsHeader

public boolean containsHeader(String pHeader)

encodeRedirectUrl

public String encodeRedirectUrl(String pURL)

encodeRedirectURL

public String encodeRedirectURL(String pURL)

encodeUrl

public String encodeUrl(String pURL)

encodeURL

public String encodeURL(String pURL)

flushBuffer

public void flushBuffer()

getBufferSize

public int getBufferSize()

getCharacterEncoding

public String getCharacterEncoding()

getContentType

public String getContentType()

Returns the content type used for the MIME body sent in this response. The content type proper must have been specified using setContentType(java.lang.String) before the response is committed. If no content type has been specified, this method returns null. If a content type has been specified and a character encoding has been explicitly or implicitly specified as described in getCharacterEncoding(), the charset parameter is included in the string returned. If no character encoding has been specified, the charset parameter is omitted.

Returns: A String specifying the content type, for example, text/html; charset=UTF-8, or null

Since: Servlet API 2.4

See Also: setContentType

getLocale

public Locale getLocale()

getOutputStream

public ServletOutputStream getOutputStream()

getStatusMessage

public static String getStatusMessage(int pStatusCode)
Returns a default message for a given HTTP status code.

Parameters: pStatusCode The status code being queried.

Returns: The default message.

getWriter

public PrintWriter getWriter()

isCommitted

public boolean isCommitted()

reset

public void reset()

resetBuffer

public void resetBuffer()

sendError

public void sendError(int pStatusCode)

sendError

public void sendError(int pStatusCode, String pMessage)

sendError

protected void sendError(int pStatusCode, String pMessage, String pDescription)

sendRedirect

public void sendRedirect(String arg0)

setBufferSize

public void setBufferSize(int pBufferSize)

setCharacterEncoding

public void setCharacterEncoding(String pCharset)

Sets the character encoding (MIME charset) of the response being sent to the client, for example, to UTF-8. If the character encoding has already been set by setContentType(java.lang.String) or setLocale(java.util.Locale), this method overrides it. Calling setContentType(java.lang.String) with the String of text/html and calling this method with the String of UTF-8 is equivalent with calling setContentType with the String of text/html; charset=UTF-8.

This method can be called repeatedly to change the character encoding. This method has no effect if it is called after getWriter has been called or after the response has been committed.

Containers must communicate the character encoding used for the servlet response's writer to the client if the protocol provides a way for doing so. In the case of HTTP, the character encoding is communicated as part of the Content-Type header for text media types. Note that the character encoding cannot be communicated via HTTP headers if the servlet does not specify a content type; however, it is still used to encode text written via the servlet response's writer.

Parameters: pCharset A String specifying only the character set defined by IANA Character Sets (http://www.iana.org/assignments/character-sets)

Since: Servlet API 2.4

See Also: setLocale

setContentLength

public void setContentLength(int pContentLength)

setContentType

public void setContentType(String pType)

setDateHeader

public void setDateHeader(String arg0, long arg1)

setHeader

public void setHeader(String pHeader, String pValue)

setIntHeader

public void setIntHeader(String pHeader, int pValue)

setLocale

public void setLocale(Locale pLocale)

setStatus

public void setStatus(int pStatusCode)

setStatus

public void setStatus(int pStatusCode, String pMessage)
Copyright © 2001-2007 Apache Software Foundation. All Rights Reserved.