Client side redirects are quite simple: From any view controller, just call the "redirect(...)" method. Instead of the current view, the framework will deliver a special redirect view to the client which contains the redirect meta information. There are 3 ways to redirect to another view: Using an URL, using a view controller, or using a view alias.
redirect("foo.xhtml");
redirect(new FooViewController());
redirect(fooViewAlias);