* @author Neil Clayton
*/
public class Part2 extends BasePage {
public void enterDetails(IRequestCycle cycle) throws RequestCycleException {
// Submission has been performed. Validate the fields
ValidationDelegate delegate = (ValidationDelegate)getBeans().getBean("delegate");
if(delegate.getHasErrors()) {
// there are errors
return;
}
cycle.setPage("Success");