Url coding strategy for bookmarkable pages that encodes index based
parameters.
Strategy looks for parameters whose name is an integer in an incremented
order starting with zero.
Encodes and decodes mounts for a single bookmarkable page class, but with the
parameters appended in a URL query string rather than integrated into a URL
hierarchical path.
For example, whereas
wicket.request.target.coding.BookmarkablePageRequestTargetUrlCodingStrategy BookmarkablePageRequestTargetUrlCodingStrategy might encode a request target as
"mywebapp/myservlet/admin/productmanagement/action/edit/product/4995",
QueryStringRequestTargetUrlCodingStrategy would encode the
same target as
"mywebapp/myservlet/admin/productmanagement?action=edit&product=4995".
URLs encoded in this way can be bookmarked just as easily as those produced
by BookmarkablePageRequestTargetUrlCodingStrategy.