putViewData("person", person);
}
public void handleEventChoosePerson(String eventParameter) throws Exception {
log.debug("Event 'choosePerson' received!");
getFlowCtx().start(new PersonListWidget(false), null, new FlowContext.Handler() {
public void onFinish(Object returnValue) throws Exception {
Long id = (Long) returnValue;
person = (PersonMO) getGeneralDAO().getById(PersonMO.class, id);
log.debug("Person with id of " + id + " set to this contract");
}