0

I have connected HP ALM 12.5 with Java through wrapper class via Com4j. To get release and cycle details, I need to access ReleaseFolderFactory object. Could you please help me to find the way using Java? Any help will be highly appreciated.

Julien Marrec
  • 11,605
  • 4
  • 46
  • 63

1 Answers1

0

You can obtain ReleaseFolderFactory object from the connection object, using ITDConnection3.releaseFolderFactory() method:

ITDConnection3 conn = ....
IReleaseFolderFactory releaseFolderFactory = 
conn.releaseFolderFactory().queryInterface(IReleaseFolderFactory.class);
Sergi
  • 990
  • 5
  • 16