1534153515361537153815391540
@InterceptedBy(Interceptor1.class) private static class TestInvalidController2 { @Action("test") public View testAction() { return new HTMLPage(); }
1900190119021903190419051906
@StatelessController("child") private static class TestChildClass extends TestAbstractController { @DefaultAction public View defaultAction() { return new HTMLPage(); }
1905190619071908190919101911
return new HTMLPage(); } @Action("test") public View testAction() { return new HTMLPage(); }
1931193219331934193519361937
private void init() { } @DefaultAction public View defaultAction() { return new HTMLPage(); }
1936193719381939194019411942
return new HTMLPage(); } @Action("test1") public View testAction() { return new HTMLPage(); }
1944194519461947194819491950
public void mockMethod() { } @Action("with-param") public View withParamAction() { return new HTMLPage(); }
1949195019511952195319541955
return new HTMLPage(); } @Action("another-param") public View anotherParamAction() { return new HTMLPage(); }
1954195519561957195819591960
return new HTMLPage(); } @Action("some-service") public View someServiceAction() { return new HTMLPage(); }
1959196019611962196319641965
return new HTMLPage(); } @Action("test-annotation") public View doAnnotationTest() { return new HTMLPage(); }
3839404142434445
@TRACEAction @InterceptedBy(Interceptor1b.class) public View someAction() { invocationList.add("traceAction"); return new HTMLPage() .withH2Content("traceAction"); }