java.lang.Object
org.apache.wicket.request.Response
org.apache.wicket.request.http.WebResponse
org.apache.wicket.page.PartialPageUpdate.ResponseBuffer
- Enclosing class:
- PartialPageUpdate
Wrapper of a response that buffers its contents.
- Author:
- Igor Vaynberg (ivaynberg), Sven Meier (svenmeier)
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.wicket.request.http.WebResponse
WebResponse.CacheScope
-
Field Summary
Fields inherited from class org.apache.wicket.request.http.WebResponse
MAX_CACHE_DURATION
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addCookie
(jakarta.servlet.http.Cookie cookie) Add a cookie to the web responsevoid
Add a value to the servlet response stream.void
clearCookie
(jakarta.servlet.http.Cookie cookie) Convenience method for clearing a cookie.Encodes urls used to redirect.encodeURL
(CharSequence url) Encodes the specified URL by including the session ID in it, or, if encoding is not needed, returns the URL unchanged.void
flush()
Flushes the response.Provides access to the low-level container response object that implementaion of thisResponse
delegate to.boolean
Indicates if the response supports setting headers.boolean
void
reset()
Resets the response to a clean state so it can be reused to save on garbage.void
Send error status code with optional message.void
sendRedirect
(String url) Redirects the response to specified URL.void
setContentLength
(long length) Set the content length on the response, if appropriate in the subclass.void
setContentType
(String mimeType) Set the content type on the response, if appropriate in the subclass.void
setDateHeader
(String name, Instant date) Set a header to the date value in the servlet response stream.void
Set a header to the string value in the servlet response stream.void
setStatus
(int sc) Sets the status code for this response.void
write
(byte[] array) Writes the buffer to output.void
write
(byte[] array, int offset, int length) Writes the buffer to output.void
write
(CharSequence cs) Writes theCharSequence
to output.Methods inherited from class org.apache.wicket.request.http.WebResponse
disableCaching, enableCaching, setAcceptRange, setAttachmentHeader, setContentRange, setInlineHeader, setLastModifiedTime
Methods inherited from class org.apache.wicket.request.Response
close, getOutputStream
-
Method Details
-
encodeURL
Description copied from class:Response
Encodes the specified URL by including the session ID in it, or, if encoding is not needed, returns the URL unchanged. -
getContents
- Returns:
- contents of the response
-
write
Description copied from class:Response
Writes theCharSequence
to output. -
reset
Resets the response to a clean state so it can be reused to save on garbage. -
write
Description copied from class:Response
Writes the buffer to output. -
write
Description copied from class:Response
Writes the buffer to output. -
getContainerResponse
Description copied from class:Response
Provides access to the low-level container response object that implementaion of thisResponse
delegate to. This allows users to access features provided by the container response but not by generalized WicketResponse
objects.- Specified by:
getContainerResponse
in classResponse
- Returns:
- low-level container response object, or
null
if none
-
addCookie
Description copied from class:WebResponse
Add a cookie to the web response- Specified by:
addCookie
in classWebResponse
-
clearCookie
Description copied from class:WebResponse
Convenience method for clearing a cookie.- Specified by:
clearCookie
in classWebResponse
- Parameters:
cookie
- The cookie to set- See Also:
-
isHeaderSupported
Description copied from class:WebResponse
Indicates if the response supports setting headers. When this method returns false,WebResponse.setHeader(String, String)
and its variations will thrown anUnsupportedOperationException
.- Specified by:
isHeaderSupported
in classWebResponse
- Returns:
- True when this
WebResponse
supports setting headers.
-
setHeader
Description copied from class:WebResponse
Set a header to the string value in the servlet response stream.- Specified by:
setHeader
in classWebResponse
-
addHeader
Description copied from class:WebResponse
Add a value to the servlet response stream.- Specified by:
addHeader
in classWebResponse
-
setDateHeader
Description copied from class:WebResponse
Set a header to the date value in the servlet response stream.- Specified by:
setDateHeader
in classWebResponse
-
setContentLength
Description copied from class:WebResponse
Set the content length on the response, if appropriate in the subclass. This default implementation does nothing.- Specified by:
setContentLength
in classWebResponse
- Parameters:
length
- The length of the content
-
setContentType
Description copied from class:WebResponse
Set the content type on the response, if appropriate in the subclass. This default implementation does nothing.- Specified by:
setContentType
in classWebResponse
- Parameters:
mimeType
- The mime type
-
setStatus
Description copied from class:WebResponse
Sets the status code for this response.- Specified by:
setStatus
in classWebResponse
- Parameters:
sc
- status code
-
sendError
Description copied from class:WebResponse
Send error status code with optional message.- Specified by:
sendError
in classWebResponse
-
encodeRedirectURL
Description copied from class:WebResponse
Encodes urls used to redirect. Sometimes rules for encoding URLs for redirecting differ from encoding URLs for links, so this method is broken out away formResponse.encodeURL(CharSequence)
.- Specified by:
encodeRedirectURL
in classWebResponse
- Returns:
- encoded URL
-
sendRedirect
Description copied from class:WebResponse
Redirects the response to specified URL. The implementation is responsible for properly encoding the URL. Implementations of this method should run passed inurl
parameters through theWebResponse.encodeRedirectURL(CharSequence)
method.- Specified by:
sendRedirect
in classWebResponse
-
isRedirect
- Specified by:
isRedirect
in classWebResponse
- Returns:
true
isWebResponse.sendRedirect(String)
was called,false
otherwise.
-
flush
Description copied from class:WebResponse
Flushes the response.- Specified by:
flush
in classWebResponse
-