handle to a snapshot
![]()
Hi,
Using IWorkspaceManager wm = SCMPlatform.getWorkspaceManager(repo); I am able to get a handle to a workspace or stream based on a name. Does something similar exist for snapshots or do I need to get the snapshots based on the found the workspace/stream and then compare its name to a searchstring? Regards, Bernd. |
2 answers
![]()
Snapshots are represented as IBaselineSet.
IBaselineSetSearchCriteria criteria = IBaselineSetSearchCriteria.FACTORY.newInstance(); criteria.setExactName("MySnapshot"); List<IBaselineSetHandle> snapshots = wm.findBaselineSets(criteria, Integer.MAX_VALUE, null); Hi, |
![]()
Hi,
I am working on developing a perl script using xml to modfify the clearquest database. Could you please tell me what is the oslc command for creating/cloning SPRs ? I am already using oslc_cm.query and oslc_cm.properties. And how to I get the scheme of OSLC. PLease help me. |