SetAttributeAction setSurname = new SetAttributeAction("surname", "value", e.getSurname());
// Create the ajax response:
AjaxResponse response = new AjaxResponseImpl();
// Add the actions to the response:
response.addAction(setFirstname);
response.addAction(setSurname);
return response;
}