if (rootNode != null && rootNode.has("docs") && rootNode.get("docs").isArray()) {
ArrayNode docs = (ArrayNode) rootNode.get("docs");
for (JsonNode d : docs) {
if (articles.size() < listSize) {
articles.add(new BasicItem(d.path("id").getTextValue(), d.path("url").getTextValue()));
// stringBuilder.append("<li>" + d.path("id").getTextValue() + " | " + d.path("url").getTextValue() + "</li>");
} else {
return;
}
}