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
-
output
-
-
REMOVE_HEADER
-
-
writer
-
-
addCookie(Cookie)
-
-
containsHeader(String)
-
-
encodeRedirectUrl(String)
-
-
encodeUrl(String)
-
-
getCharacterEncoding()
-
-
getJigsawOutputStream()
-
-
getOutputStream()
-
-
getWriter()
-
-
sendError(int)
-
-
sendError(int, String)
-
-
sendRedirect(String)
-
-
setContentLength(int)
-
-
setContentType(String)
-
-
setDateHeader(String, long)
-
-
setHeader(String, String)
-
-
setIntHeader(String, int)
-
-
setStatus(int)
-
-
setStatus(int, String)
-
-
unsetHeader(String)
-
REMOVE_HEADER
public static final String REMOVE_HEADER
output
protected JigsawServletOutputStream output
writer
public PrintWriter writer
setContentLength
public void setContentLength(int i)
setContentType
public void setContentType(String spec)
getOutputStream
public synchronized ServletOutputStream getOutputStream() throws IOException
getJigsawOutputStream
protected ServletOutputStream getJigsawOutputStream() throws IOException
setStatus
public void setStatus(int i,
String reason)
setStatus
public void setStatus(int i)
setHeader
public void setHeader(String name,
String value)
setIntHeader
public void setIntHeader(String name,
int value)
setDateHeader
public void setDateHeader(String name,
long date)
unsetHeader
public void unsetHeader(String name)
sendError
public void sendError(int i,
String msg) throws IOException
sendError
public void sendError(int i) throws IOException
sendRedirect
public void sendRedirect(String url) throws IOException
containsHeader
public boolean containsHeader(String header)
addCookie
public void addCookie(Cookie cookie)
encodeRedirectUrl
public String encodeRedirectUrl(String url)
encodeUrl
public String encodeUrl(String url)
getCharacterEncoding
public String getCharacterEncoding()
getWriter
public synchronized PrintWriter getWriter() throws IOException, UnsupportedEncodingException
All Packages Class Hierarchy This Package Previous Next Index