how to get all the componet of current project and the componet's baseline names using RTC Server api
HI
how to get all the componet of current project and the componet's baseline names using RTC Server SDK api
public void run(AdvisableOperation operation,
IProcessConfigurationElement advisorConfiguration,
IAdvisorInfoCollector collector, IProgressMonitor monitor)
throws TeamRepositoryException {
Object data = operation.getOperationData();
if (data instanceof ISaveParameter) {
ISaveParameter saveParameter = (ISaveParameter) data;
IAuditable oldauditable = saveParameter.getOldState();
IWorkItem oldWorkItem = (IWorkItem) oldauditable;
IAuditable auditable = ((ISaveParameter) data).getNewState();
IWorkItemServer service = getService(IWorkItemServer.class);
if (auditable instanceof IWorkItem) {
IWorkItem newWorkItem = (IWorkItem) auditable;
/
/
}
}
}
Accepted answer
1) IComponentSearchCriteria.getFilterByOwnerOptional().. you add to this collection the IProjectAreaHandles or ITeamAreaHandles. This will return all components owned by those process areas. Pass the IComponentSearchCriteria into IScmQueryService.findComponents()
2) Then use: IBaselineSearchCriteria.setComponentRequired(component) to return all baselines in that component. It will return handles (so you'll have only the itemID). Pass the IBaselineSearchCriteria into IScmQueryService.findBaselines()
3) Then simply fetch the full IBaseline from the handles from step 2, and then use IBaseline.getName()
Comments
Gou Peng
Oct 12 '19, 3:02 a.m.thank you very much ,you are the best