public Object getAsObject(FacesContext context, UIComponent component, String value) {
if (value == null) return null;
value = value.trim();
if (value.length() == 0) return null;
CountryController ctrl = new CountryController();
Country obj = ctrl.read(value);
return obj;
}