wrapDetails(model, request);
}
@Override
public Country unwrap(HttpServletRequest request, ApplicationContext appContext) {
CountryService countryService = (CountryService) appContext.getBean("blCountryService");
if (this.abbreviation != null) {
Country country = countryService.findCountryByAbbreviation(this.abbreviation);
return country;
}
return null;
}