|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Url | |
---|---|
org.apache.wicket.examples.requestmapper | |
org.apache.wicket.mock | |
org.apache.wicket.protocol.http | HTTP implementation. |
org.apache.wicket.protocol.http.mock | |
org.apache.wicket.protocol.http.servlet | Java Servlet specific implementation of Wicket http classes. |
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.cycle | |
org.apache.wicket.request.handler.render | |
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 | |
org.apache.wicket.request.resource | |
org.apache.wicket.util.tester | A package with utility classes to ease unit testing of Wicket applications without the need for a servlet container. |
Uses of Url in org.apache.wicket.examples.requestmapper |
---|
Methods in org.apache.wicket.examples.requestmapper that return Url | |
---|---|
Url |
LocaleFirstMapper.mapHandler(IRequestHandler handler)
|
Url |
CustomHomeMapper.mapHandler(IRequestHandler requestHandler)
|
Uses of Url in org.apache.wicket.mock |
---|
Methods in org.apache.wicket.mock that return Url | |
---|---|
Url |
MockWebRequest.getClientUrl()
|
Url |
MockWebRequest.getUrl()
|
Methods in org.apache.wicket.mock with parameters of type Url | |
---|---|
MockWebRequest |
MockWebRequest.cloneWithUrl(Url url)
|
void |
MockWebRequest.setUrl(Url url)
|
Constructors in org.apache.wicket.mock with parameters of type Url | |
---|---|
MockWebRequest(Url url)
Construct. |
|
MockWebRequest(Url url,
String contextPath,
String filterPath,
String prefixToContextPath)
Construct. |
Uses of Url in org.apache.wicket.protocol.http |
---|
Methods in org.apache.wicket.protocol.http with parameters of type Url | |
---|---|
BufferedWebResponse |
WebApplication.getAndRemoveBufferedResponse(String sessionId,
Url url)
|
boolean |
WebApplication.hasBufferedResponse(String sessionId,
Url url)
|
void |
WebApplication.storeBufferedResponse(String sessionId,
Url url,
BufferedWebResponse response)
|
Uses of Url in org.apache.wicket.protocol.http.mock |
---|
Methods in org.apache.wicket.protocol.http.mock that return Url | |
---|---|
Url |
MockHttpServletRequest.getUrl()
|
Methods in org.apache.wicket.protocol.http.mock with parameters of type Url | |
---|---|
void |
MockHttpServletRequest.setUrl(Url url)
|
Uses of Url in org.apache.wicket.protocol.http.servlet |
---|
Methods in org.apache.wicket.protocol.http.servlet that return Url | |
---|---|
Url |
ServletWebRequest.getClientUrl()
Returns base url without context or filter mapping. |
Url |
ServletWebRequest.getUrl()
|
Methods in org.apache.wicket.protocol.http.servlet with parameters of type Url | |
---|---|
ServletWebRequest |
ServletWebRequest.cloneWithUrl(Url url)
|
ServletWebRequest |
MultipartServletWebRequest.cloneWithUrl(Url url)
|
Constructors in org.apache.wicket.protocol.http.servlet with parameters of type Url | |
---|---|
MultipartServletWebRequest(javax.servlet.http.HttpServletRequest httpServletRequest,
String filterPrefix,
Url url)
Construct. |
|
ServletWebRequest(javax.servlet.http.HttpServletRequest httpServletRequest,
String filterPrefix,
Url url)
Construct. |
Uses of Url in org.apache.wicket.protocol.https |
---|
Methods in org.apache.wicket.protocol.https that return Url | |
---|---|
Url |
HttpsMapper.mapHandler(IRequestHandler requestHandler)
Returns the Url for given IRequestHandler or null if the request
handler is not recognized. |
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(String url)
Parses the given URL string. |
static Url |
Url.parse(String 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)
Construct. |
Uses of Url in org.apache.wicket.request.cycle |
---|
Methods in org.apache.wicket.request.cycle that return Url | ||
---|---|---|
|
RequestCycle.mapUrlFor(Class<C> pageClass,
PageParameters parameters)
Returns a bookmarkable URL that references a given page class using a given set of page parameters. |
|
Url |
RequestCycle.mapUrlFor(IRequestHandler handler)
Returns URL for the request handler or null if the handler couldn't have been
encoded. |
|
Url |
RequestCycle.mapUrlFor(ResourceReference reference,
PageParameters params)
Returns a Url for the resource reference |
Methods in org.apache.wicket.request.cycle with parameters of type Url | |
---|---|
void |
RequestCycleListenerCollection.onUrlMapped(RequestCycle cycle,
IRequestHandler handler,
Url url)
|
void |
AbstractRequestCycleListener.onUrlMapped(RequestCycle cycle,
IRequestHandler handler,
Url url)
|
void |
IRequestCycleListener.onUrlMapped(RequestCycle cycle,
IRequestHandler handler,
Url url)
Called after a Url is generated for a IRequestHandler . |
Uses of Url in org.apache.wicket.request.handler.render |
---|
Methods in org.apache.wicket.request.handler.render with parameters of type Url | |
---|---|
protected BufferedWebResponse |
WebPageRenderer.getAndRemoveBufferedResponse(Url url)
|
protected void |
WebPageRenderer.redirectTo(Url url,
RequestCycle requestCycle)
|
protected BufferedWebResponse |
WebPageRenderer.renderPage(Url targetUrl,
RequestCycle requestCycle)
Renders page to a BufferedWebResponse . |
protected void |
WebPageRenderer.storeBufferedResponse(Url url,
BufferedWebResponse response)
Store the buffered response at application level. |
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 |
MountedMapper.buildUrl(AbstractBookmarkableMapper.UrlInfo info)
|
protected abstract Url |
AbstractBookmarkableMapper.buildUrl(AbstractBookmarkableMapper.UrlInfo info)
Builds URL for the given AbstractBookmarkableMapper.UrlInfo instance. |
protected Url |
BookmarkableMapper.buildUrl(AbstractBookmarkableMapper.UrlInfo info)
|
protected Url |
PackageMapper.buildUrl(AbstractBookmarkableMapper.UrlInfo info)
|
protected Url |
AbstractMapper.encodePageParameters(Url url,
PageParameters pageParameters,
IPageParametersEncoder encoder)
Encodes the given PageParameters to the URL using the given
IPageParametersEncoder . |
Url |
MountedMapper.mapHandler(IRequestHandler requestHandler)
|
Url |
AbstractBookmarkableMapper.mapHandler(IRequestHandler requestHandler)
|
Url |
BasicResourceReferenceMapper.mapHandler(IRequestHandler requestHandler)
|
Url |
CryptoMapper.mapHandler(IRequestHandler requestHandler)
|
Url |
ResourceMapper.mapHandler(IRequestHandler requestHandler)
|
Url |
PageInstanceMapper.mapHandler(IRequestHandler requestHandler)
|
Url |
BufferedResponseMapper.mapHandler(IRequestHandler requestHandler)
|
Url |
CompoundRequestMapper.mapHandler(IRequestHandler handler)
Searches the registered IRequestMapper s to find one that can map the
IRequestHandler . |
Url |
ParentPathReferenceRewriter.mapHandler(IRequestHandler requestHandler)
Returns the Url for given IRequestHandler or null if the request
handler is not recognized. |
Methods in org.apache.wicket.request.mapper with parameters of type Url | |
---|---|
protected void |
ResourceMapper.addCachingDecoration(Url url,
PageParameters parameters)
|
protected boolean |
BasicResourceReferenceMapper.canBeHandled(Url url)
Checks whether the passed Url can be handled by this mapper |
protected void |
AbstractComponentMapper.encodePageComponentInfo(Url url,
PageComponentInfo info)
Encodes the PageComponentInfo instance as the first query string parameter to the
URL. |
protected Url |
AbstractMapper.encodePageParameters(Url url,
PageParameters pageParameters,
IPageParametersEncoder encoder)
Encodes the given PageParameters to the URL using the given
IPageParametersEncoder . |
protected void |
AbstractResourceReferenceMapper.encodeResourceReferenceAttributes(Url url,
ResourceReference reference)
|
protected BufferedWebResponse |
BufferedResponseMapper.getAndRemoveBufferedResponse(Url url)
|
protected PageComponentInfo |
AbstractComponentMapper.getPageComponentInfo(Url url)
Extracts the PageComponentInfo from the URL. |
protected ResourceReference.UrlAttributes |
AbstractResourceReferenceMapper.getResourceReferenceAttributes(Url url)
|
protected boolean |
BufferedResponseMapper.hasBufferedResponse(Url url)
|
protected void |
ResourceMapper.removeCachingDecoration(Url url,
PageParameters parameters)
|
protected void |
AbstractResourceReferenceMapper.removeMetaParameter(Url urlCopy)
The new IRequestMapper s use the first query parameter to hold meta information about
the request like page version, component version, locale, ... The actual
IRequestMapper implementation can decide whether the this parameter should be removed
before creating PageParameters from the current query
parameters
Removes the first query parameter only if PageComponentInfo.parse(String) returns
non-null instance
Remove the first parameter because it brings meta information like locale |
protected void |
AbstractComponentMapper.removeMetaParameter(Url urlCopy)
The new IRequestMapper s use the first query parameter to hold meta information about
the request like page version, component version, locale, ...
Removes the first query parameter only if PageComponentInfo.parse(String) returns
non-null instance |
protected void |
AbstractMapper.removeMetaParameter(Url urlCopy)
The new IRequestMapper s use the first query parameter to hold meta information about
the request like page version, component version, locale, ... |
protected boolean |
MountedMapper.urlStartsWith(Url url,
String... segments)
|
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 |
PageParametersEncoder.encodePageParameters(PageParameters pageParameters)
|
Url |
IPageParametersEncoder.encodePageParameters(PageParameters pageParameters)
Encode the given PageParameters instance into URL. |
Url |
UrlPathPageParametersEncoder.encodePageParameters(PageParameters params)
|
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. |
Uses of Url in org.apache.wicket.request.resource |
---|
Methods in org.apache.wicket.request.resource that return Url | |
---|---|
Url |
MetaInfStaticResourceReference.mapHandler(IRequestHandler requestHandler)
Returns the Url for given IRequestHandler if "/META-INF/resources" Servlet
3.0 feature is supported or null if not (so standard url mapping can take
place). |
Uses of Url in org.apache.wicket.util.tester |
---|
Methods in org.apache.wicket.util.tester that return Url | |
---|---|
Url |
BaseWicketTester.urlFor(AjaxLink<?> link)
|
Url |
BaseWicketTester.urlFor(IRequestHandler handler)
Encodes the IRequestHandler to Url . |
Methods in org.apache.wicket.util.tester with parameters of type Url | |
---|---|
void |
BaseWicketTester.executeAjaxUrl(Url url)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |