Pages which take a PageParameters object as an argument to their constructor can be accessed directly from a URL and are known as "bookmarkable" pages since the URL is stable across sessions and can be stored in a browser's bookmark database. @author Jonathan Locke
Indexed vs Named Parameters: Suppose we mounted a page on {@code /user} and thefollowing url was accessed {@code /user/profile/bob?action=view&redirect=false}. In this example {@code profile} and {@code bob} are indexed parameters with respective indexes 0 and 1.{@code action} and {@code redirect} are named parameters.
How those parameters are populated depends on the {@link IRequestMapper}s @author Matej Knopp
|
|
|
|