@RequestMapping(value = "/person/delete/{id}", method = RequestMethod.GET)
public String delete(@PathVariable("id") Long id, RedirectAttributes attributes) {
LOGGER.debug("Deleting person with id: " + id);
try {
Person deleted = personService.delete(id);
addFeedbackMessage(attributes, FEEDBACK_MESSAGE_KEY_PERSON_DELETED, deleted.getName());
} catch (PersonNotFoundException e) {
LOGGER.debug("No person found with id: " + id);
addErrorMessage(attributes, ERROR_MESSAGE_KEY_DELETED_PERSON_WAS_NOT_FOUND);
}