public boolean onFinish() {
if (getForm().isValid()) {
// Store client and associated address in the database
ClientService service = new ClientService();
service.saveClient(client);
// Set a flash success message
getContext().setFlashAttribute("message", "The client "
+ client.getName() + " was successfully created.");