Uses of Interface
org.apache.wicket.IRequestTarget

Packages that use IRequestTarget
org.apache.wicket The core Wicket package. 
org.apache.wicket.ajax   
org.apache.wicket.examples.staticpages   
org.apache.wicket.protocol.http HTTP implementation. 
org.apache.wicket.protocol.http.request This package contains http (web) protocol dependent implementations of request processing strategies. 
org.apache.wicket.protocol.http.request.urlcompressing   
org.apache.wicket.protocol.https   
org.apache.wicket.request Package for classes that have generic (protocol independent) support for request cycle processing. 
org.apache.wicket.request.target.basic   
org.apache.wicket.request.target.coding Additions to request targets. 
org.apache.wicket.request.target.component   
org.apache.wicket.request.target.component.listener   
org.apache.wicket.request.target.resource   
 

Uses of IRequestTarget in org.apache.wicket
 

Methods in org.apache.wicket that return IRequestTarget
 IRequestTarget RequestCycle.getRequestTarget()
          Gets the current request target.
 IRequestTarget RequestListenerInterface.newRequestTarget(Page page, Component component, RequestListenerInterface listener, RequestParameters requestParameters)
          Creates a new request target for this request listener interface
 

Methods in org.apache.wicket with parameters of type IRequestTarget
 void Application.logEventTarget(IRequestTarget target)
          THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.
 void Application.logResponseTarget(IRequestTarget requestTarget)
          THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.
protected  void RequestCycle.onRequestTargetSet(IRequestTarget requestTarget)
          Called when a request target is set on the request cycle
 void RequestCycle.request(IRequestTarget target)
          THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.
 void RequestCycle.setRequestTarget(IRequestTarget requestTarget)
          Sets the request target as the current.
 CharSequence RequestCycle.urlFor(IRequestTarget requestTarget)
          Returns a URL that references the given request target.
 CharSequence Component.urlFor(IRequestTarget requestTarget)
          Returns a URL that references the given request target.
 

Uses of IRequestTarget in org.apache.wicket.ajax
 

Classes in org.apache.wicket.ajax that implement IRequestTarget
 class AjaxRequestTarget
          A request target that produces ajax response envelopes used on the client side to update component markup as well as evaluate arbitrary javascript.
 

Uses of IRequestTarget in org.apache.wicket.examples.staticpages
 

Classes in org.apache.wicket.examples.staticpages that implement IRequestTarget
 class CapturingBookmarkablePageRequestTarget
           
 

Methods in org.apache.wicket.examples.staticpages that return IRequestTarget
 IRequestTarget CapturingBookmarkablePageRequestTargetUrlCodingStrategy.decode(RequestParameters requestParameters)
           
 

Uses of IRequestTarget in org.apache.wicket.protocol.http
 

Methods in org.apache.wicket.protocol.http that return IRequestTarget
 IRequestTarget WebRequestCycleProcessor.resolve(RequestCycle requestCycle, RequestParameters requestParameters)
           
 

Methods in org.apache.wicket.protocol.http with parameters of type IRequestTarget
 void WebApplication.logEventTarget(IRequestTarget target)
           
 void RequestLogger.logEventTarget(IRequestTarget target)
           
 void IRequestLogger.logEventTarget(IRequestTarget target)
          Sets the target that was the event target for the current request
 void WebApplication.logResponseTarget(IRequestTarget target)
           
 void RequestLogger.logResponseTarget(IRequestTarget target)
           
 void IRequestLogger.logResponseTarget(IRequestTarget target)
          Sets the target that was the response target for the current request
 

Uses of IRequestTarget in org.apache.wicket.protocol.http.request
 

Classes in org.apache.wicket.protocol.http.request that implement IRequestTarget
 class WebErrorCodeResponseTarget
          Response target that is to be used in a servlet environment to send an error code and optionally a message.
 class WebExternalResourceRequestTarget
          Request target that is not a Wicket resource.
 

Methods in org.apache.wicket.protocol.http.request that return IRequestTarget
 IRequestTarget WebRequestCodingStrategy.targetForRequest(RequestParameters requestParameters)
           
 IRequestTarget CryptedUrlWebRequestCodingStrategy.targetForRequest(RequestParameters requestParameters)
           
 

Methods in org.apache.wicket.protocol.http.request with parameters of type IRequestTarget
protected  String WebRequestCodingStrategy.doEncode(RequestCycle requestCycle, IRequestTarget requestTarget)
          In case you are using custom targets that are not part of the default target hierarchy, you need to override this method, which will be called after the defaults have been tried.
 CharSequence WebRequestCodingStrategy.encode(RequestCycle requestCycle, IRequestTarget requestTarget)
          Encode the given request target.
 CharSequence CryptedUrlWebRequestCodingStrategy.encode(RequestCycle requestCycle, IRequestTarget requestTarget)
          Encode the querystring of the URL
protected  IRequestTargetUrlCodingStrategy WebRequestCodingStrategy.getMountEncoder(IRequestTarget requestTarget)
          Gets the mount encoder for the given request target if any.
 CharSequence WebRequestCodingStrategy.pathForTarget(IRequestTarget requestTarget)
           
 CharSequence CryptedUrlWebRequestCodingStrategy.pathForTarget(IRequestTarget requestTarget)
           
 

Uses of IRequestTarget in org.apache.wicket.protocol.http.request.urlcompressing
 

Methods in org.apache.wicket.protocol.http.request.urlcompressing that return IRequestTarget
protected  IRequestTarget UrlCompressingWebRequestProcessor.resolveListenerInterfaceTarget(RequestCycle requestCycle, Page page, String componentPath, String interfaceName, RequestParameters requestParameters)
           
 

Uses of IRequestTarget in org.apache.wicket.protocol.https
 

Methods in org.apache.wicket.protocol.https that return IRequestTarget
protected  IRequestTarget HttpsRequestCycleProcessor.checkSecure(IRequestTarget target)
          Deprecated. use checkSecureIncoming
protected  IRequestTarget HttpsRequestCycleProcessor.checkSecureIncoming(IRequestTarget target)
           
protected  IRequestTarget HttpsRequestCycleProcessor.checkSecureOutgoing(IRequestTarget target)
           
 IRequestTarget HttpsRequestCycleProcessor.resolve(RequestCycle rc, RequestParameters rp)
           Resolves the request and returns the request target.
 

Methods in org.apache.wicket.protocol.https with parameters of type IRequestTarget
protected  IRequestTarget HttpsRequestCycleProcessor.checkSecure(IRequestTarget target)
          Deprecated. use checkSecureIncoming
protected  IRequestTarget HttpsRequestCycleProcessor.checkSecureIncoming(IRequestTarget target)
           
protected  IRequestTarget HttpsRequestCycleProcessor.checkSecureOutgoing(IRequestTarget target)
           
 

Uses of IRequestTarget in org.apache.wicket.request
 

Methods in org.apache.wicket.request that return IRequestTarget
 IRequestTarget IRequestCycleProcessor.resolve(RequestCycle requestCycle, RequestParameters requestParameters)
           Resolves the request and returns the request target.
protected  IRequestTarget AbstractRequestCycleProcessor.resolveBookmarkablePage(RequestCycle requestCycle, RequestParameters requestParameters)
          Resolves to a bookmarkable page target.
protected  IRequestTarget AbstractRequestCycleProcessor.resolveExternalResource(RequestCycle requestCycle)
          Resolves to an external resource.
protected  IRequestTarget AbstractRequestCycleProcessor.resolveHomePageTarget(RequestCycle requestCycle, RequestParameters requestParameters)
          Resolves to a home page target.
protected  IRequestTarget AbstractRequestCycleProcessor.resolveListenerInterfaceTarget(RequestCycle requestCycle, Page page, String componentPath, String interfaceName, RequestParameters requestParameters)
          Resolves the RequestTarget for the given interface.
protected  IRequestTarget AbstractRequestCycleProcessor.resolveRenderedPage(RequestCycle requestCycle, RequestParameters requestParameters)
          Resolves to a page target that was previously rendered.
protected  IRequestTarget AbstractRequestCycleProcessor.resolveSharedResource(RequestCycle requestCycle, RequestParameters requestParameters)
          Resolves to a shared resource target.
 IRequestTarget IRequestTargetMounter.targetForRequest(RequestParameters requestParameters)
          Gets the request target that conforms to the given request parameters.
 

Methods in org.apache.wicket.request with parameters of type IRequestTarget
 CharSequence IRequestCodingStrategy.encode(RequestCycle requestCycle, IRequestTarget requestTarget)
           Gets the url that will point to the provided request target.
 CharSequence IRequestTargetMounter.pathForTarget(IRequestTarget requestTarget)
          Gets the url that the provided request target conforms to.
 

Uses of IRequestTarget in org.apache.wicket.request.target.basic
 

Classes in org.apache.wicket.request.target.basic that implement IRequestTarget
 class EmptyAjaxRequestTarget
          The empty AJAX request target does output an empty AJAX response.
 class EmptyRequestTarget
          The empty request target does nothing in itself but instead relies on some other source to generate a response.
 class RedirectRequestTarget
          A RequestTarget that will send a redirect url to the browser.
 class StringRequestTarget
          Request target that responds by sending its string property.
 

Methods in org.apache.wicket.request.target.basic that return IRequestTarget
 IRequestTarget URIRequestTargetUrlCodingStrategy.decode(RequestParameters requestParameters)
          Does nothing
 

Methods in org.apache.wicket.request.target.basic with parameters of type IRequestTarget
 CharSequence URIRequestTargetUrlCodingStrategy.encode(IRequestTarget requestTarget)
          Copied from BookmarkablePageRequestTargetUrlCodingStrategy.encode(IRequestTarget) without pageMapName field
 boolean URIRequestTargetUrlCodingStrategy.matches(IRequestTarget requestTarget)
          Always returns false
 

Uses of IRequestTarget in org.apache.wicket.request.target.coding
 

Classes in org.apache.wicket.request.target.coding that implement IRequestTarget
static class HybridUrlCodingStrategy.HybridBookmarkablePageRequestTarget
          BookmarkablePage request target that does a redirect after bookmarkable page was rendered (only if the bookmarkable page is stateful though)
 

Methods in org.apache.wicket.request.target.coding that return IRequestTarget
 IRequestTarget SharedResourceRequestTargetUrlCodingStrategy.decode(RequestParameters requestParameters)
           
 IRequestTarget QueryStringUrlCodingStrategy.decode(RequestParameters requestParameters)
           
 IRequestTarget PackageRequestTargetUrlCodingStrategy.decode(RequestParameters requestParameters)
           
 IRequestTarget IndexedSharedResourceCodingStrategy.decode(RequestParameters requestParameters)
           
 IRequestTarget IRequestTargetUrlCodingStrategy.decode(RequestParameters requestParameters)
          Gets the decoded request target.
 IRequestTarget HybridUrlCodingStrategy.decode(RequestParameters requestParameters)
           
 IRequestTarget BookmarkablePageRequestTargetUrlCodingStrategy.decode(RequestParameters requestParameters)
           
protected  IRequestTarget HybridUrlCodingStrategy.handleExpiredPage(String pageMapName, Class<? extends Page> pageClass, int trailingSlashesCount, boolean redirect)
          Handles the case where a non-bookmarkable url with a hybrid base refers to a page that is no longer in session.
 

Methods in org.apache.wicket.request.target.coding with parameters of type IRequestTarget
 CharSequence SharedResourceRequestTargetUrlCodingStrategy.encode(IRequestTarget requestTarget)
           
 CharSequence PackageRequestTargetUrlCodingStrategy.encode(IRequestTarget requestTarget)
           
 CharSequence IndexedSharedResourceCodingStrategy.encode(IRequestTarget requestTarget)
           
 CharSequence IRequestTargetUrlCodingStrategy.encode(IRequestTarget requestTarget)
          Gets the encoded url for the provided request target.
 CharSequence HybridUrlCodingStrategy.encode(IRequestTarget requestTarget)
           
 CharSequence BookmarkablePageRequestTargetUrlCodingStrategy.encode(IRequestTarget requestTarget)
           
 boolean SharedResourceRequestTargetUrlCodingStrategy.matches(IRequestTarget requestTarget)
           
 boolean PackageRequestTargetUrlCodingStrategy.matches(IRequestTarget requestTarget)
           
 boolean IndexedSharedResourceCodingStrategy.matches(IRequestTarget requestTarget)
           
 boolean IRequestTargetUrlCodingStrategy.matches(IRequestTarget requestTarget)
          Gets whether this mounter is applicable for the provided request target.
 boolean HybridUrlCodingStrategy.matches(IRequestTarget requestTarget)
           
 boolean BookmarkablePageRequestTargetUrlCodingStrategy.matches(IRequestTarget requestTarget)
           
 

Uses of IRequestTarget in org.apache.wicket.request.target.component
 

Subinterfaces of IRequestTarget in org.apache.wicket.request.target.component
 interface IBookmarkablePageRequestTarget
          Target that denotes a page that is to be created from the provided page class.
 interface IComponentRequestTarget
          Target that denotes a single component instance.
 interface IPageRequestTarget
          Request target that denotes a page instance.
 

Classes in org.apache.wicket.request.target.component that implement IRequestTarget
 class BookmarkableListenerInterfaceRequestTarget
          Request target for bookmarkable page links that also contain component path and interface name.
 class BookmarkablePageRequestTarget
          Default implementation of IBookmarkablePageRequestTarget.
 class ComponentRequestTarget
          Default implementation of IComponentRequestTarget.
 class ExpiredPageClassRequestTarget
          Special purpose target that points to a expiry page
 class PageIdRequestTarget
          Deprecated. will be removed before 1.5
 class PageReferenceRequestTarget
          Target that navigates to a page pointed to by its id.
 class PageRequestTarget
          Default implementation of IPageRequestTarget.
 

Uses of IRequestTarget in org.apache.wicket.request.target.component.listener
 

Subinterfaces of IRequestTarget in org.apache.wicket.request.target.component.listener
 interface IListenerInterfaceRequestTarget
          Target that denotes a page instance and a call to a component on that page using an listener interface method.
 

Classes in org.apache.wicket.request.target.component.listener that implement IRequestTarget
 class AbstractListenerInterfaceRequestTarget
          The abstract implementation of IListenerInterfaceRequestTarget.
 class BehaviorRequestTarget
          Target that denotes a page instance and a call to a component on that page using an listener interface method.
 class ListenerInterfaceRequestTarget
          Target that denotes a page instance and a call to a component on that page using a listener interface method.
 class RedirectPageRequestTarget
          Specialization of page request that denotes that we are actually handling a redirect request of a page.
 

Uses of IRequestTarget in org.apache.wicket.request.target.resource
 

Subinterfaces of IRequestTarget in org.apache.wicket.request.target.resource
 interface ISharedResourceRequestTarget
          Target that denotes a shared Resource, i.e a resource that doesn't need a host component.
 

Classes in org.apache.wicket.request.target.resource that implement IRequestTarget
 class ComponentResourceRequestTarget
          An implementation of IRequestTarget that is used for the IResourceListener event request.
 class ResourceStreamRequestTarget
          Request target that responds by sending its resource stream.
 class SharedResourceRequestTarget
          Default implementation of ISharedResourceRequestTarget.
 



Copyright © 2004-2011 Apache Software Foundation. All Rights Reserved.