IRequestLogger interface requires that getRequests() method return
RequestLogger.RequestData (public inner class)
-----------------------------------------------------------------------------------------------------------------
Key: WICKET-2884
URL: https://issues.apache.org/jira/browse/WICKET-2884
Project: Wicket
Issue Type: Improvement
Affects Versions: 1.4.9, 1.4.8, 1.4.7, 1.4.6, 1.4.5, 1.4.4, 1.4.3, 1.4.2,
1.4.1
Reporter: Clint Checketts
The IRequestLogger interface getRequests method signature return a
List<org.apache.wicket.protocol.http.RequestLogger.RequestData>.
This stops a user from extending the RequestData class and returning their own
implementation.
please update the IRequestLogger interface to allow for anything extending the
RequestData class to be allowed:
Like
public abstract List<? extends RequestData> getRequests();
Or separating it out to require some generic interface.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.