// Constructs the JSON data
String json = "{\"total\": " + totalRecords + ",\"rows\": [";
int size = optons.size();
for (int i = 0; i < size; i++) {
OptionBase instance = optons.get(i);
Integer id = instance.getId();
String value = instance.getValue();
String label_en_US = instance.getLabel_en_US();
String label_zh_CN = instance.getLabel_zh_CN();
int sequence = instance.getSequence();
json += "{\"id\":\"" + id + "\",\"entity.id\":\"" + id
+ "\",\"entity.value\":\"" + value
+ "\",\"entity.label_en_US\":\""
+ CommonUtil.fromNullToEmpty(label_en_US)