IWorkitem List Manipulation
Hi,
I have two lists of IWorkitem or IWorkItemHandle (e.g. ArrayList<IWorkItemHandle>)
I would like to perform Java List operations, like removeAll
So if I have a:
- workitemListA {1234, 4133, 4555} (I write the IDs)
- workitemListB {5133, 4133, 4555}
After performing:
workitemListA.removeAll(workitemListB)
it will contain only {1234}.
Since all workitem handles are pointers, this won't work in any case.
So need to implement compare using UUID.
I can write such wrapper class. but maybe such service already exists in the API/SDK?
Thanks,
Moti