Dummy response object, used for JSP precompilation.
| Method from org.apache.catalina.core.DummyResponse 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) {
return false;
}
|
public ServletOutputStream createOutputStream() throws IOException {
return null;
}
|
public String encodeRedirectURL(String url) {
return null;
}
|
public String encodeRedirectUrl(String url) {
return null;
}
|
public String encodeURL(String url) {
return null;
}
|
public String encodeUrl(String url) {
return null;
}
|
public void finishResponse() throws IOException {
}
|
public void flushBuffer() throws IOException {
}
|
public int getBufferSize() {
return -1;
}
|
public String getCharacterEncoding() {
return null;
}
|
public Connector getConnector() {
return null;
}
|
public int getContentCount() {
return -1;
}
|
public int getContentLength() {
return -1;
}
|
public String getContentType() {
return null;
}
|
public Context getContext() {
return null;
}
|
public Cookie[] getCookies() {
return null;
}
|
public String getHeader(String name) {
return null;
}
|
public String[] getHeaderNames() {
return null;
}
|
public String[] getHeaderValues(String name) {
return null;
}
|
public boolean getIncluded() {
return false;
}
|
public String getInfo() {
return null;
}
|
public Locale getLocale() {
return null;
}
|
public String getMessage() {
return null;
}
|
public ServletOutputStream getOutputStream() throws IOException {
return null;
}
|
public PrintWriter getReporter() {
return null;
}
|
public Request getRequest() {
return null;
}
|
public ServletResponse getResponse() {
return null;
}
|
public int getStatus() {
return -1;
}
|
public OutputStream getStream() {
return null;
}
|
public PrintWriter getWriter() throws IOException {
return null;
}
|
public boolean isAppCommitted() {
return false;
}
|
public boolean isCommitted() {
return false;
}
|
public boolean isError() {
return false;
}
|
public boolean isSuspended() {
return false;
}
|
public void recycle() {
}
|
public void reset() {
}
|
public void reset(int status,
String message) {
}
|
public void resetBuffer() {
}
|
public void sendAcknowledgement() throws IOException {
}
|
public void sendError(int status) throws IOException {
}
|
public void sendError(int status,
String message) throws IOException {
}
|
public void sendRedirect(String location) throws IOException {
}
|
public void setAppCommitted(boolean appCommitted) {
}
|
public void setBufferSize(int size) {
}
|
public void setCharacterEncoding(String charEncoding) {
}
|
public void setConnector(Connector connector) {
}
|
public void setContentLength(int length) {
}
|
public void setContentType(String type) {
}
|
public void setContext(Context context) {
}
|
public void setDateHeader(String name,
long value) {
}
|
public void setError() {
}
|
public void setHeader(String name,
String value) {
}
|
public void setIncluded(boolean included) {
}
|
public void setIntHeader(String name,
int value) {
}
|
public void setLocale(Locale locale) {
}
|
public void setRequest(Request request) {
}
|
public void setStatus(int status) {
}
|
public void setStatus(int status,
String message) {
}
|
public void setStream(OutputStream stream) {
}
|
public void setSuspended(boolean suspended) {
}
|
public void write(int b) throws IOException {
}
|
public void write(byte[] b) throws IOException {
}
|
public void write(byte[] b,
int off,
int len) throws IOException {
}
|