State state = StateDAO.load(getAdminBean(request).getSite().getSiteId(), Format.getLong(stateId));
JSONEscapeObject jsonResult = new JSONEscapeObject();
jsonResult.put("stateId", state.getStateId());
jsonResult.put("stateCode", state.getStateCode());
jsonResult.put("stateName", state.getStateName());
String jsonString = jsonResult.toHtmlString();
streamWebService(response, jsonString);
return null;
}
public void createAdditionalInfo(CountryMaintActionForm form, Country country) {