Package org.apache.wicket.request
Interface ILoggableRequestHandler
-
- All Superinterfaces:
IRequestHandler
public interface ILoggableRequestHandler extends IRequestHandler
A loggable request handler is aIRequestHandlerthat is capable of delivering log data. Implementations of this interface should collect data before or fromIRequestHandler.detach(IRequestCycle).getLogData()will never be called before the handler is detached.- Author:
- Emond Papegaaij
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ILogDatagetLogData()Returns the collected log data for this request handler and should never throw an exception.-
Methods inherited from interface org.apache.wicket.request.IRequestHandler
detach, respond
-
-
-
-
Method Detail
-
getLogData
ILogData getLogData()
Returns the collected log data for this request handler and should never throw an exception. This method is never called before the request handler is detached.- Returns:
- The collected log data.
-
-