how to get the active project areas by java API
Harish Raj (11●3●16●19)
| asked Nov 21 '12, 3:01 a.m.
edited Mar 12 '13, 9:32 a.m. by Ralph Schoon (63.5k●3●36●46)
How to get the active project areas by java API (may be in an ArrayList)?
|
Accepted answer
From a plain java client you could do the following: IProcessItemService service = (IProcessItemService) repository.getClientLibrary(IProcessItemService.class); Harish Raj selected this answer as the correct answer
|
One other answer
Hi,
Could you please provide the api for the server side Participant to get the project areas..
this would be of great help.
Thanks
Comments
Martin Dam Pedersen
commented Mar 12 '13, 6:52 a.m.
public void run(AdvisableOperation operation,
IProcessConfigurationElement participantConfig,
IParticipantInfoCollector collector, IProgressMonitor monitor)
throws TeamRepositoryException {
IProcessArea processArea = operation.getProcessArea();
iProjectAreaHandle = processArea.getProjectArea();
|
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.
Comments
What is the context in which you are trying to get project areas(serverside advisor/contributor, plain java client application or something else) ?
I was looking for plain java client only. Thank you.