}
}
@Test
public void enumReportCollectionIterator() throws JIException {
OCReportCollection repCollection = app.getReportCollection();
System.out.println("\nOCReportCollection ====================");
Iterator<OCReportManager> enumV = repCollection.iterator();
while (enumV.hasNext()) {
System.out.println(enumV.next().toString());
}
}