[closed] How to get ChangeSetHandles after phase 2 delivery, using java server side API?
Billy Brown (11●2●3)
| asked Nov 24 '15, 11:37 a.m.
closed Nov 24 '15, 5:49 p.m. by Donald Nong (14.5k●6●14)
I'm trying to get the ComponentHandle after a phase 2 delivery from the IScmDeltaSource. I noticed the operation date for a phase 1 delivery gives the DeliverOperationData and you can the ChangeSetHandles from it.
DeliverOperationData deliverOpData = (DeliverOperationData) data;
changeSetHandles = deliverOpData.getChangeSetHandles();
How can I achieve this for phase 2? Ultimately, I would like to get the component/component name from the change.
|