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.
Asked
Active
Viewed 203 times
1 Answers
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