It's all about the answers!

Ask a question

How to add successor and predecessors using plain java?


pugazhenthi samidurai (26423942) | asked Apr 11 '12, 1:34 a.m.
Hi,

I have followed the below link to create new work item using plain java client library.

https://jazz.net/wiki/bin/view/Main/ProgrammaticWorkItemCreation

Let me know how to add successor and predecessors to the work item.



Thanks,

Pugazh

One answer



permanent link
pugazhenthi samidurai (26423942) | answered Oct 03 '12, 8:07 a.m.
Hi,

the below snippet of code will help you to add predecessor through plain java client .

private void setPredecessors(WorkItemWorkingCopy wc, IWorkItem parent) {
       
        IEndPointDescriptor referenceType = WorkItemEndPoints.PREDECESSOR_WORK_ITEMS;
        IReference reference = WorkItemLinkTypes
                .createWorkItemReference(parent);
        wc.getReferences().add(referenceType, reference);

    }

Thanks,
Pugazh S

Your answer


Register or to post 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.