return "success";
}
public String buttonCancel_action() {
Person object = getSessionBean1().getPerson();
//cancel of new creation, return to list
if (object == null || object.getIdContact() == null) {
return "cancel";
} else {//return to info
return "success";
}
}