if (collections==null) {
collections = new TreeMap<String, String>(String.CASE_INSENSITIVE_ORDER);
SqlQInfo info = getSqlQInfo();
info.setTableSuffix("COLLECTION");
SqlQuery q = new SqlQuery();
q.query(context, con, info, new SqlRowHandler() {
@Override
public void handleSqlRow(TaskContext context, Connection con, ResultSet rs, long rowNum) throws Exception {
String coluuid = rs.getString("COLUUID");
String shortName = rs.getString("SHORTNAME");
collections.put(coluuid, shortName);