Description
If you mount a page like this:
mount(new IndexedParamUrlCodingStrategy("/page", MyPage.class));
MyPage is a class with a contructor that accepts PageParameters.
When you try to access the page with any of these URLs:
http://myserver/page/
or
http://myserver/page
the PageParameters contains a single parameter "0" / "".
But when you try:
http://myserver/page//
or
http://myserver/page///
then the PageParameters is empty.