Uses of Class
org.apache.wicket.request.Url
-
Packages that use Url Package Description 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.parameter org.apache.wicket.request.parameter -
-
Uses of Url in org.apache.wicket.request
Methods in org.apache.wicket.request that return Url Modifier and Type Method Description UrlUrl. canonical()Try to reduce url by eliminating '..' and '.' from the path where appropriate (this is somehow similar toFile.getCanonicalPath()).UrlUrlRenderer. getBaseUrl()Returns the base Url.abstract UrlRequest. getClientUrl()Returns the url against which the client, usually the browser, will resolve relative urls in the rendered markup.UrlRequest. getOriginalUrl()In case this request has been created usingRequest.cloneWithUrl(Url), this method should return the original URL.abstract UrlRequest. getUrl()Returns the URL for this request.UrlIRequestMapper. mapHandler(IRequestHandler requestHandler)static UrlUrl. parse(CharSequence url)Parses the given URL string.static UrlUrl. parse(CharSequence _url, Charset charset)Parses the given URL string.static UrlUrl. parse(CharSequence _url, Charset charset, boolean isFullHint)Parses the given URL string.UrlUrlRenderer. setBaseUrl(Url base)Sets the base Url.Methods in org.apache.wicket.request with parameters of type Url Modifier and Type Method Description RequestRequest. cloneWithUrl(Url url)Returns request with specified URL and same POST parameters as this request.StringIUrlRenderer. renderFullUrl(Url url, Url baseUrl)Renders the passed url as full/absolute.StringUrlRenderer. renderFullUrl(Url url)Renders a full URL in theprotocol://hostname:port/pathformatStringIUrlRenderer. renderRelativeUrl(Url url, Url baseUrl)Renders the passed url as relative to a base url.StringUrlRenderer. renderRelativeUrl(Url url)Renders the Url relative to currently set Base Url.StringUrlRenderer. renderUrl(Url url)Renders the Urlprotected StringUrlRenderer. resolveHost(Url url)Gets the host name that should be used to render the urlprotected IntegerUrlRenderer. resolvePort(Url url)Gets port that should be used to render the urlprotected StringUrlRenderer. resolveProtocol(Url url)Gets the protocol that should be used to render the urlvoidUrl. resolveRelative(Url relative)Makes this url the result of resolving therelativeurl against this url.UrlUrlRenderer. setBaseUrl(Url base)Sets the base Url.protected booleanUrlRenderer. shouldRenderAsFull(Url url)Determines whether a URL should be rendered in its full formConstructors in org.apache.wicket.request with parameters of type Url Constructor Description 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 Modifier and Type Method Description WebRequestWebRequest. 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 Modifier and Type Method Description protected UrlAbstractMapper. encodePageParameters(Url url, PageParameters pageParameters, IPageParametersEncoder encoder)Encodes the givenPageParametersto the URL using the givenIPageParametersEncoder.UrlCompoundRequestMapper. mapHandler(IRequestHandler handler)Searches the registeredIRequestMappers to find one that can map theIRequestHandler.UrlParentPathReferenceRewriter. mapHandler(IRequestHandler requestHandler)Methods in org.apache.wicket.request.mapper with parameters of type Url Modifier and Type Method Description protected UrlAbstractMapper. encodePageParameters(Url url, PageParameters pageParameters, IPageParametersEncoder encoder)Encodes the givenPageParametersto the URL using the givenIPageParametersEncoder.protected voidAbstractMapper. removeMetaParameter(Url urlCopy)The newIRequestMappers use the first query parameter to hold meta information about the request like page version, component version, locale, ...protected booleanAbstractMapper. urlStartsWith(Url url, String... segments)Returns true if the given url starts with specified segments. -
Uses of Url in org.apache.wicket.request.mapper.parameter
Methods in org.apache.wicket.request.mapper.parameter that return Url Modifier and Type Method Description UrlIPageParametersEncoder. encodePageParameters(PageParameters pageParameters)Encode the givenPageParametersinstance into URL.UrlPageParametersEncoder. encodePageParameters(PageParameters pageParameters)UrlUrlPathPageParametersEncoder. encodePageParameters(PageParameters params)Methods in org.apache.wicket.request.mapper.parameter with parameters of type Url Modifier and Type Method Description PageParametersIPageParametersEncoder. decodePageParameters(Url url)Decodes the given URL toPageParameters.PageParametersPageParametersEncoder. decodePageParameters(Url url)PageParametersUrlPathPageParametersEncoder. decodePageParameters(Url url) -
Uses of Url in org.apache.wicket.request.parameter
Constructors in org.apache.wicket.request.parameter with parameters of type Url Constructor Description UrlRequestParametersAdapter(Url url)Construct.
-