To make url bookmarkable need to rewrite url (reading the value of the mapped value bindings and
appending them to the query string).
This rewriting happens in the following cases:
<page view-id="/search.xhtml">
<param name="searchPattern" value="#{searchService.searchPattern}"/>
</page>
<h:form>
<h:inputText value="#{searchService.searchPattern}"/>
<h:commandButton value="Search" action="/search.xhtml"/>
</h:form>
<s:div id="searchResult">
....
</s:div>
<a:commandButton value="Search" action="#{searchAction.find()}" reRender="searchResult"/>