05-29-2014 09:04 AM
Document doc = (Document) session.getObject(objectId);
document.getAllVersions()
. But this will return all the version of the document and I guess it will flood the memory with all the version (Kindly clarify if this is not the case).05-29-2014 11:09 AM
OperationContext context = new OperationContextImpl();
context.setMaxItemsPerPage(10);
context.set***(***);
d.getAllVersions(context);
05-30-2014 06:40 AM
document.getAllVersions()
and got the id of each version object, then we got id in format like <drupal5><docId>;<versionLabel></drupal5>05-30-2014 08:42 AM
workspace://SpacesStore/344da22e-1252-48bc-b3ee-2844dcb8b2d4;1.1
will definately identify only one version node. session.getObject("<documentId>;<versionLabelId>");
to get specific version now,but you should use it with precaution,since you might take beblow risks:06-02-2014 01:52 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.