How to get the date when the changeset is delivered using CLient API?
Hi All,
I want to get the latest changeset and the date when it is delivered using the java client API.
IWorkspaceSearchCriteria wsSearchCriteria = WorkspaceSearchCriteria.FACTORY.newInstance();
wsSearchCriteria.setKind(IWorkspaceSearchCriteria.STREAMS);
wsSearchCriteria.setPartialOwnerNameIgnoreCase(projectAreaName);
List <IWorkspaceHandle> workspaceHandles = workspaceManager.findWorkspaces(wsSearchCriteria, Integer.MAX_VALUE, progressMonitor);
IWorkspaceConnection workspaceConnection = workspaceManager.getWorkspaceConnection(workspaceHandles.get(0),progressMonitor);
List<IFlowNode> test = workspaceConnection.getComponents();
now I got the components from here on how to get the changesets and it date it is delivered?
Thanks,
Surender