JHarveyUser
Programmer
I'm currently trying to improve our Java LiveLink application.
One of my biggest challenge is to improve the update of object right.
I'm actually using
Java:
private LAPI_DOCUMENTS documents;
//... exemple...//
documents.SetObjectRight(idVol, idObject, LAPI_DOCUMENTS.RIGHT_UPDATE, idGroup, permission, 1);
On each object that I need to update. Everyday there new group or rights change on every node and with all the RIGHT_UPDATE that I need to call It can take sometime multiple hours to upload less than 1000 files.
I was wondering if it's possible with the java API 9.7 to do mass object right update. Didn't found anything with the API doc.
Upload all the rights change in a single call ?
Thanks and sorry for my bad english :|