subContext.setCurrentUser(harvestAdmin);
HarvestedCollection hc = HarvestedCollection.find(subContext, collecionID);
hc.setHarvestStatus(HarvestedCollection.STATUS_QUEUED);
hc.update();
subContext.commit();
HarvestThread ht = new HarvestThread(subContext, hc);
harvestThreads.push(ht);
log.debug("****** Queued up a thread. Active threads: " + harvestThreads.toString());