}
@InitBinder
void registerConverters(WebDataBinder binder) {
if (binder.getConversionService() instanceof GenericConversionService) {
GenericConversionService conversionService = (GenericConversionService) binder.getConversionService();
conversionService.addConverter(getRestaurantConverter());
conversionService.addConverter(getUserAccountConverter());
conversionService.addConverter(getRestaurantConverterFromString());
}
}