public static void main(String[] args) {
RestBAClient dataBairesClient = new DefaultRestBAClient();
String query = "gcba/metadata/_search?&from=0";
JsonObject q = dataBairesClient.executeQuery(query, JsonObject.class);
System.out.println("JSON object: " + q.toString());
}
}