Uses of Class
org.apache.wicket.request.Url

Packages that use Url
org.apache.wicket.request Package for classes that have generic (protocol independent) support for request cycle processing. 
org.apache.wicket.request.http   
org.apache.wicket.request.mapper   
org.apache.wicket.request.mapper.mount   
org.apache.wicket.request.mapper.parameter   
org.apache.wicket.request.parameter   
 

Uses of Url in org.apache.wicket.request
 

Methods in org.apache.wicket.request that return Url
 Url Url.canonical()
          Try to reduce url by eliminating '..' and '.' from the path where appropriate (this is somehow similar to File.getCanonicalPath()).
 Url UrlRenderer.getBaseUrl()
          Returns the base Url.
abstract  Url Request.getClientUrl()
          Returns the url against which the client, usually the browser, will resolve relative urls in the rendered markup.
 Url Request.getOriginalUrl()
          In case this request has been created using Request.cloneWithUrl(Url), this method should return the original URL.
abstract  Url Request.getUrl()
          Returns the URL for this request.
 Url IRequestMapper.mapHandler(IRequestHandler requestHandler)
          Returns the Url for given IRequestHandler or null if the request handler is not recognized.
static Url Url.parse(CharSequence url)
          Parses the given URL string.
static Url Url.parse(CharSequence _url, Charset charset)
          Parses the given URL string.
 Url UrlRenderer.setBaseUrl(Url base)
          Sets the base Url.
 

Methods in org.apache.wicket.request with parameters of type Url
 Request Request.cloneWithUrl(Url url)
          Returns request with specified URL and same POST parameters as this request.
 String UrlRenderer.renderFullUrl(Url url)
          Renders a full URL in the protocol://hostname:port/path format
 String UrlRenderer.renderRelativeUrl(Url url)
          Renders the Url relative to currently set Base Url.
 String UrlRenderer.renderUrl(Url url)
          Renders the Url
protected  String UrlRenderer.resolveHost(Url url)
          Gets the host name that should be used to render the url
protected  Integer UrlRenderer.resolvePort(Url url)
          Gets port that should be used to render the url
protected  String UrlRenderer.resolveProtocol(Url url)
          Gets the protocol that should be used to render the url
 void Url.resolveRelative(Url relative)
          Makes this url the result of resolving the relative url against this url.
 Url UrlRenderer.setBaseUrl(Url base)
          Sets the base Url.
protected  boolean UrlRenderer.shouldRenderAsFull(Url url)
          Determines whether a URL should be rendered in its full form
 

Constructors in org.apache.wicket.request with parameters of type Url
Url(Url url)
          copy constructor
 

Uses of Url in org.apache.wicket.request.http
 

Methods in org.apache.wicket.request.http with parameters of type Url
 WebRequest WebRequest.cloneWithUrl(Url url)
          Returns request with specified URL and same POST parameters as this request.
 

Uses of Url in org.apache.wicket.request.mapper
 

Methods in org.apache.wicket.request.mapper that return Url
protected  Url AbstractMapper.encodePageParameters(Url url, PageParameters pageParameters, IPageParametersEncoder encoder)
          Encodes the given PageParameters to the URL using the given IPageParametersEncoder.
 Url ParentPathReferenceRewriter.mapHandler(IRequestHandler requestHandler)
          Returns the Url for given IRequestHandler or null if the request handler is not recognized.
 Url CompoundRequestMapper.mapHandler(IRequestHandler handler)
          Searches the registered IRequestMappers to find one that can map the IRequestHandler.
 

Methods in org.apache.wicket.request.mapper with parameters of type Url
protected  Url AbstractMapper.encodePageParameters(Url url, PageParameters pageParameters, IPageParametersEncoder encoder)
          Encodes the given PageParameters to the URL using the given IPageParametersEncoder.
protected  void AbstractMapper.removeMetaParameter(Url urlCopy)
          The new IRequestMappers use the first query parameter to hold meta information about the request like page version, component version, locale, ...
protected  boolean AbstractMapper.urlStartsWith(Url url, String... segments)
          Returns true if the given url starts with specified segments.
 

Uses of Url in org.apache.wicket.request.mapper.mount
 

Methods in org.apache.wicket.request.mapper.mount that return Url
 Url Mount.getUrl()
           
 Url MountMapper.mapHandler(IRequestHandler handler)
           
 

Constructors in org.apache.wicket.request.mapper.mount with parameters of type Url
Mount(Url url)
          Construct.
 

Uses of Url in org.apache.wicket.request.mapper.parameter
 

Methods in org.apache.wicket.request.mapper.parameter that return Url
 Url IPageParametersEncoder.encodePageParameters(PageParameters pageParameters)
          Encode the given PageParameters instance into URL.
 Url PageParametersEncoder.encodePageParameters(PageParameters pageParameters)
           
 Url UrlPathPageParametersEncoder.encodePageParameters(PageParameters params)
           
 

Methods in org.apache.wicket.request.mapper.parameter with parameters of type Url
 PageParameters IPageParametersEncoder.decodePageParameters(Url url)
          Decodes the given URL to PageParameters.
 PageParameters PageParametersEncoder.decodePageParameters(Url url)
           
 PageParameters UrlPathPageParametersEncoder.decodePageParameters(Url url)
           
 

Uses of Url in org.apache.wicket.request.parameter
 

Constructors in org.apache.wicket.request.parameter with parameters of type Url
UrlRequestParametersAdapter(Url url)
          Construct.
 



Copyright © 2006-2012 Apache Software Foundation. All Rights Reserved.