home *** CD-ROM | disk | FTP | other *** search
- package javax.servlet;
-
- import java.io.IOException;
- import java.io.PrintWriter;
- import java.util.Locale;
-
- public interface ServletResponse {
- String getCharacterEncoding();
-
- String getContentType();
-
- ServletOutputStream getOutputStream() throws IOException;
-
- PrintWriter getWriter() throws IOException;
-
- void setCharacterEncoding(String var1);
-
- void setContentLength(int var1);
-
- void setContentType(String var1);
-
- void setBufferSize(int var1);
-
- int getBufferSize();
-
- void flushBuffer() throws IOException;
-
- void resetBuffer();
-
- boolean isCommitted();
-
- void reset();
-
- void setLocale(Locale var1);
-
- Locale getLocale();
- }
-