List snapshot components
![]()
Hi everyone,
Is there a way using the Java API to list all the components associated to a snapshot?
Thank you in advance for your support.
Regards
Marco
|
One answer
![]()
Ralph Schoon (60.7k●3●36●43)
| answered Aug 08 '19, 3:28 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER Yes.
Get the baselines com.ibm.team.scm.common.IBaselineSet.getBaselines()
Iterate the baselines, for each baseline,
get the component. com.ibm.team.scm.common.IBaseline.getComponent()
|