@Action("param-annotation-all")
public View paramAnnotationTest6(@Param("p1") Date p1, @Param("p2") String p2, @Param("p3") int p3,
@Param("p4") double p4) {
return new HTMLPage()
.withH2Content("index/param-annotation-all " +
p1.toString() + ", " + p2 + ", " + p3 + ", " + p4);
}