How to get IChangeset object from Changeset UUID
2 answers
You can create an IChangeSetHandle from the UUID:
Once you have the handle, you can fetch the full IChangeSet object on the client using the IItemManager:
On the server you would use IRepositoryItemService to fetch the item.
IChangeSetHandle csHandle = (IChangeSetHandle) IChangeSet.ITEM_TYPE.createItemHandle(uuid, null);
Once you have the handle, you can fetch the full IChangeSet object on the client using the IItemManager:
IChangeSet cs = (IChangeSet) teamRepository.itemManager().fetchCompleteItem(
csHandle, IItemManager.DEFAULT, null);
On the server you would use IRepositoryItemService to fetch the item.