String name = (model == null) ? null : model.getName();
LOGGER.info("received model with the id \"{}\" and name \"{}\"", id, name);
if (model == null) {
return null;
}
ExampleResponseModel response = new ExampleResponseModel();
response.setResult(model.getName());
return response;
}