Uses of Class
wicket.Response

Packages that use Response
wicket The core Wicket package. 
wicket.ajax   
wicket.behavior   
wicket.markup Base package for markup. 
wicket.markup.html Base package of HTML markup. 
wicket.markup.transformer Transformers are able to post-process (transform) the output generated by a Component. 
wicket.protocol.http HTTP implementation. 
wicket.protocol.http.portlet Wicket interface to the JSR-168 portlet API. 
wicket.request.target.resource   
wicket.response Several response implementations. 
wicket.util.string String utilities. 
 

Uses of Response in wicket
 

Fields in wicket declared as Response
protected  Response RequestCycle.response
          The current response.
 

Methods in wicket that return Response
 Response RequestCycle.getOriginalResponse()
          Get the orignal respone the request was create with.
 Response RequestCycle.getResponse()
          Gets the response.
 Response Component.getResponse()
           
 Response RequestCycle.setResponse(Response response)
          Sets response.
 

Methods in wicket with parameters of type Response
protected  void Resource.configureResponse(Response response)
          Allows implementations to do configure the response, like setting headers etc.
 RequestCycle Session.newRequestCycle(Request request, Response response)
          THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.
 RequestCycle IRequestCycleFactory.newRequestCycle(Session session, Request request, Response response)
          Creates a new RequestCycle object.
 Response RequestCycle.setResponse(Response response)
          Sets response.
 

Constructors in wicket with parameters of type Response
RequestCycle(Session session, Request request, Response response)
          Constructor.
 

Uses of Response in wicket.ajax
 

Methods in wicket.ajax with parameters of type Response
protected  void AbstractAjaxTimerBehavior.onRenderHeadContribution(Response response)
           
protected  void AbstractDefaultAjaxBehavior.onRenderHeadInitContribution(Response response)
           
 

Uses of Response in wicket.behavior
 

Methods in wicket.behavior with parameters of type Response
protected  void AbstractAjaxBehavior.onRenderHeadContribution(Response response)
          Let this handler print out the needed header contributions.
protected  void AbstractAjaxBehavior.onRenderHeadInitContribution(Response response)
          Do a one time (per page) header contribution that is the same for all ajax variant implementations (e.g.
 void HeaderContributor.CSSReferenceHeaderContributor.renderHead(Response response)
           
 void HeaderContributor.JavaScriptReferenceHeaderContributor.renderHead(Response response)
           
 void AbstractHeaderContributor.renderHead(Response response)
           
 void AbstractAjaxBehavior.renderHead(Response response)
           
protected  void AbstractAjaxBehavior.writeJsReference(Response response, PackageResourceReference ref)
          Deprecated. use AbstractAjaxBehavior.writeJsReference(Response, ResourceReference) instead
protected  void AbstractAjaxBehavior.writeJsReference(Response response, ResourceReference ref)
          Convenience method to add a javascript reference.
 

Uses of Response in wicket.markup
 

Methods in 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 wicket.markup.html
 

Methods in wicket.markup.html with parameters of type Response
protected  void WebResource.configureResponse(Response response)
           
 void IHeaderContributor.renderHead(Response response)
          Render to the web response whatever the component wants to contribute to the head section.
 

Uses of Response in wicket.markup.transformer
 

Methods in 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 wicket.protocol.http
 

Subclasses of Response in 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.
 class WebResponseWithCryptedUrl
          Deprecated. since 1.2 Please see wicket.protocol.http.request.CryptedUrlwebRequestCodingStrategy
 

Constructors in wicket.protocol.http with parameters of type Response
WebRequestCycle(WebSession session, WebRequest request, Response response)
          Constructor which simply passes arguments to superclass for storage there.
 

Uses of Response in wicket.protocol.http.portlet
 

Subclasses of Response in wicket.protocol.http.portlet
 class WicketPortletResponse
          A Response implementation that uses PortletResponse
 

Constructors in wicket.protocol.http.portlet with parameters of type Response
PortletActionRequestCycle(WicketPortletSession session, WicketPortletRequest request, Response response)
           
PortletRenderRequestCycle(WicketPortletSession session, WicketPortletRequest request, Response response)
           
PortletRequestCycle(WicketPortletSession session, WicketPortletRequest request, Response response)
          Constructor which simply passes arguments to superclass for storage there.
 

Uses of Response in wicket.request.target.resource
 

Methods in wicket.request.target.resource with parameters of type Response
protected  void ResourceStreamRequestTarget.configure(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 wicket.response
 

Subclasses of Response in 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 wicket.util.string
 

Methods in 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 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.
 



Copyright © 2004-2007 Wicket developers. All Rights Reserved.