// Validate if OB needs to be invoked
for (int j = 0; j < workFlowNames.size(); j++)
{
String workflowName = workFlowNames.get(j);
System.out.println("Started Out Bound Queue Consumer for Folder "+folderName + " and Workflow Name " + workflowName + " at " + new GregorianCalendar().getTime());
OutBoundQueueConsumer consumer = new OutBoundQueueConsumer(folderName,workflowName);
obConsumerList.add(consumer);
}
size = 3 + (2 * workFlowNames.size());