If you want to solve this by programmed navigation links, you can use a LinkedList
as a stack. This way you can set boundaries for the number for stored navigation cases.
Example:
public class BackNavigationBean {
public BackNavigationBean() {
history = new LinkedList<String>();
}
private LinkedList<String> history;
public LinkedList getHistory() {
return history;
}
public void setLastPage(String navigationCase) {
history.push(navigationCase);
if (history.size() > 10) {
history.pollLast();
}
}
public String getLastPage() {
return history.pop();
}
}
So in 'forward' links:
<h:commandLink value="Forward" action="#{myBean.someMethod}">
<f:setPropertyActionListener target="#{backNavigationBean.lastPage}"
value="back_to_index" />
</h:commandLink>
And a 'back' link would be:
<h:commandLink value="Back"
action="#{backNavigationBean.getLastPage}" />