Exemplo n.º 1
0
 public void redirect(IRequestCycle cycle, String anchor) {
   workflow.setCurrentEntry(this);
   ILink link = workflowService(cycle).getLink(false, this);
   throw new RedirectException(link.getURL(anchor, true));
 }
Exemplo n.º 2
0
 public void activate(IRequestCycle cycle) {
   workflow.setCurrentEntry(this);
   DataContext.bindThreadDataContext(dataContext);
   cycle.getPage(pageName).validate(cycle);
   cycle.activate(pageName);
 }