|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Response | |
---|---|
org.apache.wicket | The core Wicket package. |
org.apache.wicket.behavior | |
org.apache.wicket.markup | Base package for markup. |
org.apache.wicket.markup.html | Base package of HTML markup. |
org.apache.wicket.markup.html.internal | |
org.apache.wicket.markup.transformer | Transformers are able to post-process (transform) the output generated by a Component. |
org.apache.wicket.protocol.http | HTTP implementation. |
org.apache.wicket.protocol.http.portlet | |
org.apache.wicket.request.target.resource | |
org.apache.wicket.response | Several response implementations. |
org.apache.wicket.util.string | String utilities. |
Uses of Response in org.apache.wicket |
---|
Fields in org.apache.wicket declared as Response | |
---|---|
protected Response |
RequestCycle.response
The current response. |
Methods in org.apache.wicket that return Response | |
---|---|
Response |
RequestCycle.getOriginalResponse()
Get the original response the request was create with. |
Response |
Component.getResponse()
|
Response |
RequestCycle.getResponse()
Gets the response. |
Response |
RequestCycle.setResponse(Response response)
Sets response. |
Methods in org.apache.wicket with parameters of type Response | |
---|---|
protected void |
Resource.configureResponse(Response response)
Allows implementations to do configure the response, like setting headers etc. |
static Session |
Session.findOrCreate(Request request,
Response response)
|
RequestCycle |
Application.newRequestCycle(Application application,
Request request,
Response response)
Deprecated. Applications wishing to provide custom request cycles should override method Application.newRequestCycle(Request, Response) |
abstract RequestCycle |
Application.newRequestCycle(Request request,
Response response)
Creates a new RequestCycle object. |
abstract Session |
Application.newSession(Request request,
Response response)
Creates a new session. |
Response |
RequestCycle.setResponse(Response response)
Sets response. |
Constructors in org.apache.wicket with parameters of type Response | |
---|---|
RequestCycle(Application application,
Request request,
Response response)
Constructor. |
Uses of Response in org.apache.wicket.behavior |
---|
Methods in org.apache.wicket.behavior with parameters of type Response | |
---|---|
protected void |
AbstractAjaxBehavior.onRenderHeadContribution(Response response)
|
protected void |
AbstractAjaxBehavior.onRenderHeadInitContribution(Response response)
|
Uses of Response in org.apache.wicket.markup |
---|
Methods in org.apache.wicket.markup with parameters of type Response | |
---|---|
void |
ComponentTag.writeOutput(Response response,
boolean stripWicketAttributes,
java.lang.String namespace)
Write the tag to the response |
Uses of Response in org.apache.wicket.markup.html |
---|
Methods in org.apache.wicket.markup.html that return Response | |
---|---|
Response |
IHeaderResponse.getResponse()
Returns the response that can be used to write arbitrary text to the head section. |
Methods in org.apache.wicket.markup.html with parameters of type Response | |
---|---|
protected void |
WebResource.configureResponse(Response response)
|
Uses of Response in org.apache.wicket.markup.html.internal |
---|
Methods in org.apache.wicket.markup.html.internal that return Response | |
---|---|
protected abstract Response |
HeaderResponse.getRealResponse()
Once the HeaderResponse is closed, no output may be written to it anymore. |
Response |
HeaderResponse.getResponse()
|
Uses of Response in org.apache.wicket.markup.transformer |
---|
Methods in org.apache.wicket.markup.transformer that return Response | |
---|---|
protected Response |
AbstractTransformerBehavior.newResponse()
Create a new response object which is used to store the markup generated by the child objects. |
protected Response |
AbstractOutputTransformerContainer.newResponse()
Create a new response object which is used to store the markup generated by the child objects. |
Uses of Response in org.apache.wicket.protocol.http |
---|
Subclasses of Response in org.apache.wicket.protocol.http | |
---|---|
class |
BufferedWebResponse
Subclass of WebResponse which buffers output and any redirection. |
class |
WebResponse
Implements responses over the HTTP protocol by holding an underlying HttpServletResponse object and providing convenience methods for using that object. |
Methods in org.apache.wicket.protocol.http with parameters of type Response | |
---|---|
RequestCycle |
WebApplication.newRequestCycle(Request request,
Response response)
|
Session |
WebApplication.newSession(Request request,
Response response)
|
Constructors in org.apache.wicket.protocol.http with parameters of type Response | |
---|---|
WebRequestCycle(WebApplication application,
WebRequest request,
Response response)
Constructor which simply passes arguments to superclass for storage there. |
Uses of Response in org.apache.wicket.protocol.http.portlet |
---|
Methods in org.apache.wicket.protocol.http.portlet that return Response | |
---|---|
protected Response |
EmbeddedPortletHeaderResponse.getRealResponse()
|
Methods in org.apache.wicket.protocol.http.portlet with parameters of type Response | |
---|---|
protected IHeaderResponse |
PortletRequestContext.newPortletHeaderResponse(Response response)
|
Constructors in org.apache.wicket.protocol.http.portlet with parameters of type Response | |
---|---|
EmbeddedPortletHeaderResponse(Response realResponse)
|
Uses of Response in org.apache.wicket.request.target.resource |
---|
Methods in org.apache.wicket.request.target.resource with parameters of type Response | |
---|---|
protected void |
ResourceStreamRequestTarget.configure(RequestCycle requestCycle,
Response response,
IResourceStream resourceStream)
Configures the response, default by setting the content type and length and content disposition (in case the fileName property was set). |
Uses of Response in org.apache.wicket.response |
---|
Subclasses of Response in org.apache.wicket.response | |
---|---|
class |
ConsoleResponse
A Response implementation which writes to the console. |
class |
FileResponse
A Response implementation that writes to a file. |
class |
NullResponse
Response implementation that discards all output. |
class |
StringResponse
Response object that writes to a StringWriter. |
Uses of Response in org.apache.wicket.util.string |
---|
Methods in org.apache.wicket.util.string with parameters of type Response | |
---|---|
static void |
JavascriptUtils.writeCloseTag(Response response)
|
static void |
JavascriptUtils.writeJavascript(Response response,
java.lang.CharSequence text)
Write the simple text to the response object surrounded by a script tag. |
static void |
JavascriptUtils.writeJavascript(Response response,
java.lang.CharSequence text,
java.lang.String id)
Write the simple text to the response object surrounded by a script tag. |
static void |
JavascriptUtils.writeJavascriptUrl(Response response,
java.lang.CharSequence url)
Write a reference to a javascript file to the response object |
static void |
JavascriptUtils.writeJavascriptUrl(Response response,
java.lang.CharSequence url,
java.lang.String id)
Write a reference to a javascript file to the response object |
static void |
JavascriptUtils.writeOpenTag(Response response)
|
static void |
JavascriptUtils.writeOpenTag(Response response,
java.lang.String id)
|
Constructors in org.apache.wicket.util.string with parameters of type Response | |
---|---|
JavascriptUtils(Response response)
Constructor without id for backward compatibility |
|
JavascriptUtils(Response response,
java.lang.String id)
Construct. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |