38 lines
672 B
Java
38 lines
672 B
Java
package javax.servlet;
|
|
|
|
import java.io.IOException;
|
|
import java.io.PrintWriter;
|
|
import java.util.Locale;
|
|
|
|
public interface ServletResponse {
|
|
void flushBuffer() throws IOException;
|
|
|
|
int getBufferSize();
|
|
|
|
String getCharacterEncoding();
|
|
|
|
String getContentType();
|
|
|
|
Locale getLocale();
|
|
|
|
ServletOutputStream getOutputStream() throws IOException;
|
|
|
|
PrintWriter getWriter() throws IOException;
|
|
|
|
boolean isCommitted();
|
|
|
|
void reset();
|
|
|
|
void resetBuffer();
|
|
|
|
void setBufferSize(int i);
|
|
|
|
void setCharacterEncoding(String str);
|
|
|
|
void setContentLength(int i);
|
|
|
|
void setContentType(String str);
|
|
|
|
void setLocale(Locale locale);
|
|
}
|