How can I Use IWorkItemTemplateService.instantiateTemplate()
![]()
Hi Friends,
I would like to know how to use the method IWorkItemTemplateService.instantiateTemplate, to create work Items using a work item template.
What should I pass in the argument String[] arg1 ?
Thank you for helping.
|
One answer
![]()
Ralph Schoon (62.7k●3●36●43)
| answered Sep 18 '19, 1:48 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER I would suggest to familiarize yourself with how to search in the RTC SDK. See https://rsjazz.wordpress.com/2019/05/16/searching-and-exploring-the-rtc-sdk/ for how to get started. Once you have set up a development environment with the RTC SDK, you can search for Java types, methods etc.
The second parameter is for parameters and values. Here an example I found:
public int[] instantiateTemplate(final IWorkItemTemplateHandle handle, final Map<iattributevariable, object=""> variables, final Map<string, string=""> parameters, IProgressMonitor monitor) throws TeamRepositoryException { assertValidHandle(handle); Assert.isNotNull(variables); |