cancel
Showing results for 
Search instead for 
Did you mean: 

Permission

inspiron82
Champ in-the-making
Champ in-the-making
hi,
how do i setup permissions on folder using webservices?
thanks
1 REPLY 1

openpj
Elite Collaborator
Elite Collaborator
You can use AccessControl service:
http://wiki.alfresco.com/wiki/Access_Control_Web_Service

I think you can solve using this code:

Reference reference = new Reference(STORE, null, pathToSpace);
Predicate predicate = new Predicate(new Reference[] { reference }, STORE, null);
WebServiceFactory.getAccessControlService().setOwners(predicate,user);
Hope this helps.