Just a little question. How can I implements a double redirect between three page?
Es.
public class A extends BasePage{
public A() {
super("A");
setResponsePage(new B());
}
}
public class B extends BasePage{
public B() {
super("B");
setResponsePage(new C());
}
}
Wicket just stop at Page B without redirect to page C.
Don't ask why I have to do this this. I only need to know if is possibile even not using setResponsePage.
Thanks