Extract a URL path from the given request,
suitable for view name extraction.
Parameters: request - current HTTP request the URL to use for view name extraction
Extract the URL filename from the given request URI.
Parameters: uri - the request URI; for example "/index.html" the extracted URI filename; for example "index"
Build the full view name based on the given view name
as indicated by the URL path.
The default implementation simply applies prefix and suffix.
This can be overridden, for example, to manipulate upper case
/ lower case, etc.
Parameters: viewName - the original view name, as indicated by the URL path the full view name to use See Also:UrlFilenameViewController.getPrefix() See Also:UrlFilenameViewController.getSuffix()