Plain Java client - Retrieving ClearCase Versions link info
How do I retrieve ClearCase Versions link information using a Plain Java client? For built-in link types, I would use something like
linkManager.findLinksByTarget(WorkItemLinkTypes.PARENT_WORK_ITEM, IReference, IProgressMonitor).getAllLinksFromHereOn(); However, I did not see ClearCase Versions listed in WorkItemLinkTypes. Thanks. |
One answer
Hi, you can use pre-defined link types in com.ibm.team.connector.ccbridge.common.ClearCaseWorkItemLink .
The ACT_WI_LINK_TYPE is for UCM activities and the VER_WI_LINK_TYPE is for base ClearCase versions. So, it would be something like, linkManager.findLinksByTarget(ClearCaseWorkItemLink.VER_WI_LINK_TYPE.toString(), IReference, IProgressMonitor).getAllLinksFromHereOn(); How do I retrieve ClearCase Versions link information using a Plain Java client? For built-in link types, I would use something like |
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.