Github user svenmeier commented on a diff in the pull request:
https://github.com/apache/wicket/pull/244#discussion_r150011145
--- Diff:
wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/AjaxDownloadBehavior.java
---
@@ -323,10 +323,30 @@ private String getName()
}
/**
+ * Controls if anti cache parameter should be added to the URL or not
+ *
+ * @return {@code true} to add the anti cache request parameter, {@code
false} - otherwise
+ */
+ protected boolean shouldAddAntiCacheParameter() {
--- End diff --
What is this needed for? The resource controls the caching.
---