}
// Create an ajax action for replacing the old table body content, inserting these new rows:
ReplaceContentAction replaceRowsAction = new ReplaceContentAction("employees", rows);
// Create a concrete ajax response:
AjaxResponse response = new AjaxResponseImpl();
// Add actions:
response.addAction(setMessageAction);
response.addAction(highlightAction);
response.addAction(replaceRowsAction);
return response;
}