How to access other then RTC link (WorkItemEndPoints) information in rtc server side java api
Hi,
I tried to access "Affected By Defect" information in RTC java api but i can see only links related to rtc work item like parent,children, mentions, blocks etc.
Is there is any way to access customized link or rqm links in api.
Ex:
Thanks & Regards
Sachin Nairy
I tried to access "Affected By Defect" information in RTC java api but i can see only links related to rtc work item like parent,children, mentions, blocks etc.
Is there is any way to access customized link or rqm links in api.
Ex:
linkdescriptor = WorkItemEndPoint.<mylinkendpoint>
Thanks & Regards
Sachin Nairy
One answer
Hi Sachin,
This article goes into detail on how to create and access links: https://rsjazz.wordpress.com/2012/09/19/the-rtc-workitem-link-api-linking-workitems-to-other-elements/.
This article goes into detail on how to create and access links: https://rsjazz.wordpress.com/2012/09/19/the-rtc-workitem-link-api-linking-workitems-to-other-elements/.
Comments
This post is a bit more server API specific: https://rsjazz.wordpress.com/2012/09/20/the-rtc-workitem-server-link-api-linking-to-work-items-and-other-elements/ this adds some new findings: https://rsjazz.wordpress.com/2012/10/20/following-calm-links-using-the-java-client-or-server-api/ but all in all the client and server link API's are very similar.
However, you are looking for CLM links and as explained in the Server Link API post you need to use the ILinktypeRegistry to get the link types. In addition you need to check for URI's instead of work Item links.
ILinkTypeRegistry.INSTANCE .getLinkType(WorkItemLinkTypes.TRACKS_WORK_ITEM)
1 vote