All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.w3c.jigsaw.servlet.JigsawHttpServletResponse

java.lang.Object
   |
   +----org.w3c.jigsaw.servlet.JigsawHttpServletResponse

public class JigsawHttpServletResponse
extends Object
implements HttpServletResponse

Variable Index

 o output
 o REMOVE_HEADER
 o writer

Method Index

 o addCookie(Cookie)
 o containsHeader(String)
 o encodeRedirectUrl(String)
 o encodeUrl(String)
 o getCharacterEncoding()
 o getJigsawOutputStream()
 o getOutputStream()
 o getWriter()
 o sendError(int)
 o sendError(int, String)
 o sendRedirect(String)
 o setContentLength(int)
 o setContentType(String)
 o setDateHeader(String, long)
 o setHeader(String, String)
 o setIntHeader(String, int)
 o setStatus(int)
 o setStatus(int, String)
 o unsetHeader(String)

Variables

 o REMOVE_HEADER
 public static final String REMOVE_HEADER
 o output
 protected JigsawServletOutputStream output
 o writer
 public PrintWriter writer

Methods

 o setContentLength
 public void setContentLength(int i)
 o setContentType
 public void setContentType(String spec)
 o getOutputStream
 public synchronized ServletOutputStream getOutputStream() throws IOException
 o getJigsawOutputStream
 protected ServletOutputStream getJigsawOutputStream() throws IOException
 o setStatus
 public void setStatus(int i,
                       String reason)
 o setStatus
 public void setStatus(int i)
 o setHeader
 public void setHeader(String name,
                       String value)
 o setIntHeader
 public void setIntHeader(String name,
                          int value)
 o setDateHeader
 public void setDateHeader(String name,
                           long date)
 o unsetHeader
 public void unsetHeader(String name)
 o sendError
 public void sendError(int i,
                       String msg) throws IOException
 o sendError
 public void sendError(int i) throws IOException
 o sendRedirect
 public void sendRedirect(String url) throws IOException
 o containsHeader
 public boolean containsHeader(String header)
 o addCookie
 public void addCookie(Cookie cookie)
 o encodeRedirectUrl
 public String encodeRedirectUrl(String url)
 o encodeUrl
 public String encodeUrl(String url)
 o getCharacterEncoding
 public String getCharacterEncoding()
 o getWriter
 public synchronized PrintWriter getWriter() throws IOException, UnsupportedEncodingException

All Packages  Class Hierarchy  This Package  Previous  Next  Index