|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.wicket.request.Response
org.apache.wicket.request.http.WebResponse
public abstract class WebResponse
Base class for web-related responses.
| Constructor Summary | |
|---|---|
WebResponse()
|
|
| Method Summary | |
|---|---|
abstract void |
addCookie(javax.servlet.http.Cookie cookie)
Add a cookie to the web response |
abstract void |
clearCookie(javax.servlet.http.Cookie cookie)
Convenience method for clearing a cookie. |
abstract void |
flush()
Flushes the response. |
abstract boolean |
isRedirect()
|
abstract void |
sendError(int sc,
java.lang.String msg)
Send error status code with optional message. |
abstract void |
sendRedirect(java.lang.String url)
Redirects the response to specified URL. |
void |
setAttachmentHeader(java.lang.String filename)
Convenience method for setting the content-disposition:attachment header. |
abstract void |
setContentLength(long length)
Set the content length on the response, if appropriate in the subclass. |
abstract void |
setContentType(java.lang.String mimeType)
Set the content type on the response, if appropriate in the subclass. |
abstract void |
setDateHeader(java.lang.String name,
long date)
Set a header to the date value in the servlet response stream. |
abstract void |
setHeader(java.lang.String name,
java.lang.String value)
Set a header to the string value in the servlet response stream. |
void |
setInlineHeader(java.lang.String filename)
Convenience method for setting the content-disposition:inline header. |
void |
setLastModifiedTime(long time)
Set the contents last modified time, if appropriate in the subclass. |
abstract void |
setStatus(int sc)
Sets the status code for this response. |
| Methods inherited from class org.apache.wicket.request.Response |
|---|
close, encodeURL, reset, write, write |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public WebResponse()
| Method Detail |
|---|
public abstract void addCookie(javax.servlet.http.Cookie cookie)
cookie - public abstract void clearCookie(javax.servlet.http.Cookie cookie)
cookie - The cookie to setaddCookie(Cookie)
public abstract void setHeader(java.lang.String name,
java.lang.String value)
name - value -
public abstract void setDateHeader(java.lang.String name,
long date)
name - date - public abstract void setContentLength(long length)
length - The length of the contentpublic abstract void setContentType(java.lang.String mimeType)
mimeType - The mime typepublic void setLastModifiedTime(long time)
time - The last modified time in millisecondspublic void setAttachmentHeader(java.lang.String filename)
filename - file name of the attachmentpublic void setInlineHeader(java.lang.String filename)
filename - file name of the attachmentpublic abstract void setStatus(int sc)
sc - status code
public abstract void sendError(int sc,
java.lang.String msg)
sc - msg -
java.io.IOExceptionpublic abstract void sendRedirect(java.lang.String url)
url - public abstract boolean isRedirect()
true is sendRedirect(String) was called, false
otherwise.public abstract void flush()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||