TableListModel tableList = new TableListModel();
for (HTableDescriptor htd: getTableList()) {
if (htd.isMetaRegion()) {
continue;
}
tableList.add(new TableModel(htd.getNameAsString()));
}
ResponseBuilder response = Response.ok(tableList);
response.cacheControl(cacheControl);
return response.build();
} catch (IOException e) {