Save This Page
Home » apache-tomcat-6.0.16-src » javax » servlet » http » [javadoc | source]
javax.servlet.http
class: NoBodyResponse [javadoc | source]
java.lang.Object
   javax.servlet.http.NoBodyResponse

All Implemented Interfaces:
    HttpServletResponse

Constructor:
 NoBodyResponse(HttpServletResponse r) 
Method from javax.servlet.http.NoBodyResponse Summary:
addCookie,   addDateHeader,   addHeader,   addIntHeader,   containsHeader,   encodeRedirectURL,   encodeRedirectUrl,   encodeURL,   encodeUrl,   flushBuffer,   getBufferSize,   getCharacterEncoding,   getContentType,   getLocale,   getOutputStream,   getWriter,   isCommitted,   reset,   resetBuffer,   sendError,   sendError,   sendRedirect,   setBufferSize,   setCharacterEncoding,   setContentLength,   setContentLength,   setContentType,   setDateHeader,   setHeader,   setIntHeader,   setLocale,   setStatus,   setStatus
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from javax.servlet.http.NoBodyResponse Detail:
 public  void addCookie(Cookie cookie) 
 public  void addDateHeader(String name,
    long value) 
 public  void addHeader(String name,
    String value) 
 public  void addIntHeader(String name,
    int value) 
 public boolean containsHeader(String name) 
 public String encodeRedirectURL(String url) 
 public String encodeRedirectUrl(String url) 
Deprecated! As - of Version 2.1, replaced by HttpServletResponse#encodeRedirectURL .

 public String encodeURL(String url) 
 public String encodeUrl(String url) 
Deprecated! As - of Version 2.1, replaced by HttpServletResponse#encodeURL .

 public  void flushBuffer() throws IOException 
 public int getBufferSize() 
 public String getCharacterEncoding() 
 public String getContentType() 
 public Locale getLocale() 
 public ServletOutputStream getOutputStream() throws IOException 
 public PrintWriter getWriter() throws UnsupportedEncodingException 
 public boolean isCommitted() 
 public  void reset() throws IllegalStateException 
 public  void resetBuffer() throws IllegalStateException 
 public  void sendError(int sc) throws IOException 
 public  void sendError(int sc,
    String msg) throws IOException 
 public  void sendRedirect(String location) throws IOException 
 public  void setBufferSize(int size) throws IllegalStateException 
 public  void setCharacterEncoding(String charset) 
  void setContentLength() 
 public  void setContentLength(int len) 
 public  void setContentType(String type) 
 public  void setDateHeader(String name,
    long date) 
 public  void setHeader(String name,
    String value) 
 public  void setIntHeader(String name,
    int value) 
 public  void setLocale(Locale loc) 
 public  void setStatus(int sc) 
 public  void setStatus(int sc,
    String sm) 
Deprecated!