Route parameters define a fixed value which is associated with a qualified name.
Routing: Route parameters which allow the controller to distinguish branches easily and route the request accordingly.
Rendering: The system will select a route to render an URL if all route parameters are always matched.
<route path="/foo">
<route-param qname="gtn:handler">
<value>portal</value>
</route-param>
</route>
This configuration matches the "/foo" request path to the map (gtn:handler=portal). Conversely, it renders the map (gtn:handler=portal) as the "/foo" URL. This example shows two concepts:
Exact path matching ("/foo").
Route parameters ("gtn:handler").