// Create list of auths
List<String> authorizations = new ArrayList<String>();
if (auths != null && auths.length() > 0)
for (String a : auths.split(","))
authorizations.add(a);
ContentLogic table = new ContentLogic();
table.setTableName(tableName);
return table.runQuery(connector, query, authorizations);
}