How to delete work item links in DNG modules
I want to remove the link between the DNG module and the work item.
I'm trying to delete it by the following method. But it won't be deleted.
How do I remove the link in the DNG?
Source code uses OSLC
In addition, only certain links should be removed. I don't know how to do that.
-----Delete LInk
Requirement req = getDNGContentsFromTitle(dngName, false);
final Link[] deleteLink = new Link[0];
req.setImplementedBy(deleteLink);
-----(Note)
Link creation is done in the following way.
req.addImplementedBy(new Link(new URI(rtcUri)));
-------Link work items to DNG
(implements Requirement Links)
--DNG Link to WorkItem