Download changesets from workitem
One answer
Sure you can! :) Steps you need are:
- Retrieve work-item by ID: com.ibm.team.workitem.common.IWorkItemCommon#findWorkItemById
- Retrieve change-set linked to work-item: com.ibm.team.links.service.ILinkServiceLibrary#findLinks and use ILinkConstants.CHANGESET_WORKITEM_LINKTYPE_ID as link type.
-
Retrieve changes belong to change-set
Cheers.