| Package | Description |
|---|---|
| org.apache.wicket.request |
Package for classes that have generic (protocol independent) support for request cycle processing.
|
| org.apache.wicket.request.flow | |
| org.apache.wicket.request.handler | |
| org.apache.wicket.request.http.handler | |
| org.apache.wicket.request.mapper | |
| org.apache.wicket.request.mapper.mount |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ILoggableRequestHandler
A loggable request handler is a
IRequestHandler that is capable of delivering log data. |
interface |
IRequestHandlerDelegate
A
IRequestHandler that delegates the actual work to another IRequestHandler. |
| Modifier and Type | Method and Description |
|---|---|
IRequestHandler |
RequestHandlerStack.getActive() |
IRequestHandler |
IRequestHandlerDelegate.getDelegateHandler() |
IRequestHandler |
RequestHandlerStack.ReplaceHandlerException.getReplacementRequestHandler() |
IRequestHandler |
IExceptionMapper.map(Exception e) |
IRequestHandler |
IRequestMapper.mapRequest(Request request)
|
IRequestHandler |
RequestHandlerStack.next() |
IRequestHandler |
RequestHandlerStack.resolveHandler(RuntimeException exception)
Certain exceptions can carry a request handler they wish to be executed, this method tries to
resolve such a handler given an exception.
|
| Modifier and Type | Method and Description |
|---|---|
protected abstract void |
RequestHandlerStack.detach(IRequestHandler handler)
Allows the request handler to detach
|
void |
RequestHandlerStack.execute(IRequestHandler handler) |
Url |
IRequestMapper.mapHandler(IRequestHandler requestHandler)
|
void |
RequestHandlerStack.replaceAll(IRequestHandler handler)
Replaces all request handlers on the stack with the specified one and executes it.
|
protected abstract void |
RequestHandlerStack.respond(IRequestHandler handler)
Allows the request handler to respond to the request
|
void |
RequestHandlerStack.schedule(IRequestHandler handler)
Schedules the handler after the current one
|
void |
IRequestCycle.scheduleRequestHandlerAfterCurrent(IRequestHandler handler)
Schedule the request handler to be executed after the current one.
|
| Constructor and Description |
|---|
RequestHandlerStack.ReplaceHandlerException(IRequestHandler replacementRequestHandler,
boolean removeAll)
Construct.
|
| Constructor and Description |
|---|
ResetResponseException(IRequestHandler handler)
Construct.
|
| Modifier and Type | Class and Description |
|---|---|
class |
EmptyRequestHandler
Request handler that performs no work
|
class |
TextRequestHandler
Request target that responds by sending its string property.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ErrorCodeRequestHandler
Response target that is to be used in a servlet environment to send an error code and optionally
a message.
|
class |
RedirectRequestHandler
A request handler that redirects to the given url.
|
| Modifier and Type | Method and Description |
|---|---|
IRequestHandler |
CompoundRequestMapper.mapRequest(Request request)
Searches the registered
IRequestMappers to find one that can map the Request. |
IRequestHandler |
ParentPathReferenceRewriter.mapRequest(Request request) |
| Modifier and Type | Method and Description |
|---|---|
Url |
CompoundRequestMapper.mapHandler(IRequestHandler handler)
Searches the registered
IRequestMappers to find one that can map the
IRequestHandler. |
Url |
ParentPathReferenceRewriter.mapHandler(IRequestHandler requestHandler)
|
| Modifier and Type | Method and Description |
|---|---|
IRequestHandler |
MountMapper.mapRequest(Request request)
Deprecated.
|
IRequestHandler |
IMountedRequestMapper.mapRequest(Request request,
MountParameters mountParams)
Deprecated.
Returns
IRequestHandler for the request or null if the encoder does not
recognize the URL. |
| Modifier and Type | Method and Description |
|---|---|
Mount |
IMountedRequestMapper.mapHandler(IRequestHandler requestHandler)
Deprecated.
Returns the
Mount for given IRequestHandler or null if the
encoder does not recognize the request handler. |
Url |
MountMapper.mapHandler(IRequestHandler handler)
Deprecated.
|
| Constructor and Description |
|---|
MountMapper(String mountPath,
IRequestHandler handler)
Deprecated.
Construct.
|
Copyright © 2006–2017 Apache Software Foundation. All rights reserved.