Re: Page indirection

2008-12-04 Thread kan
Not sure what do you want and why is it about wicket? Why not just make a "redirector service", like: interface IRedirector { void redirect(PageParams pp); } class TournamentRedirector implements IRedirector { void redirect(PageParams pp) { setResponsePage(EditTournament.class, pp); }

Page indirection

2008-12-03 Thread Steve Flasby
Hi, I am looking to add a little more configurability to my Wicket app. At the moment all forward requests are coded something like: setResponsePage( EditTournament.class, pp ); but I would like to be able to configure this more flexibly. For example, for certain installations I may wan