cancel
Showing results for 
Search instead for 
Did you mean: 

Changing the Space access rights by code

jlabuelo
Champ on-the-rise
Champ on-the-rise
Good Morning all

I have an easy question (I hope) about space rights . I am building a code in java to implement in Alfresco, and I would need some help to change the access rights to "reader" for all users of a given space.

Any place you know I can find some document or post for this ( I have already searched in the forum but did not find anything related) or some example??

Thanks  lot guys!!   Smiley Happy
3 REPLIES 3

jayjayecl
Confirmed Champ
Confirmed Champ
Hi, here is some java snippet :


permissionService.setPermission(folderNodeRef,
                    PermissionService.ALL_AUTHORITIES,
                    PermissionService.CONSUMER, true);

where "folderNoderef" is the Noderef of the given space.

Hope this helps

jlabuelo
Champ on-the-rise
Champ on-the-rise
Hey thanks a lot!

jayjayecl
Confirmed Champ
Confirmed Champ
No problem, glad to help