<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Remove Permissions to other users in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/remove-permissions-to-other-users/m-p/161370#M115301</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I want to know that whats the role of any logged in user over any space or file,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;how can I do it?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What will be syntax for it?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Khinendra&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Nov 2009 11:01:54 GMT</pubDate>
    <dc:creator>khinendra</dc:creator>
    <dc:date>2009-11-12T11:01:54Z</dc:date>
    <item>
      <title>Remove Permissions to other users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/remove-permissions-to-other-users/m-p/161364#M115295</link>
      <description>Hi all,Using Alfresco Web Services API, I have created a user&amp;nbsp; with his space in the user home space…I would to know if it is possible remove read permission(Remove Consumer Role in alfresco) to the other users in his own space using web services api…So the users see only their own spaces and no the</description>
      <pubDate>Wed, 12 Mar 2008 14:57:41 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/remove-permissions-to-other-users/m-p/161364#M115295</guid>
      <dc:creator>frank83</dc:creator>
      <dc:date>2008-03-12T14:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Permissions to other users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/remove-permissions-to-other-users/m-p/161365#M115296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Are you find your answer ? Because I search it&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2008 12:55:16 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/remove-permissions-to-other-users/m-p/161365#M115296</guid>
      <dc:creator>mduthoit</dc:creator>
      <dc:date>2008-05-22T12:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Permissions to other users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/remove-permissions-to-other-users/m-p/161366#M115297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;A href="http://wiki.alfresco.com/wiki/Access_Control_Web_Service" rel="nofollow noopener noreferrer"&gt;http://wiki.alfresco.com/wiki/Access_Control_Web_Service&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2008 08:09:18 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/remove-permissions-to-other-users/m-p/161366#M115297</guid>
      <dc:creator>janv</dc:creator>
      <dc:date>2008-05-23T08:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Permissions to other users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/remove-permissions-to-other-users/m-p/161367#M115298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is this topic still fresh enough? Small example for a space indicated by "path", given a store.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;setAccessControlList(Store store, String path,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; boolean inheritPermissions, Hashtable&amp;lt;String, String&amp;gt; accessControl) &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; accessControlService = WebServiceFactory.getAccessControlService();&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Reference ref = new Reference(store, null, getXPathEscape(path));&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Predicate predicate = new Predicate(new Reference[] { ref }, store, null);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACE[] aces = new ACE[accessControl.size()];&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // remove existing …&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; accessControlService.removeACEs(predicate, null);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; accessControlService.addACEs(predicate, aces);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; accessControlService.setInheritPermission(predicate, inheritPermissions);&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2008 09:13:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/remove-permissions-to-other-users/m-p/161367#M115298</guid>
      <dc:creator>jos_snellings</dc:creator>
      <dc:date>2008-06-06T09:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Permissions to other users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/remove-permissions-to-other-users/m-p/161368#M115299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How can I give read/write permission to given user using&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;accesscontrolService ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Mar 2009 09:23:31 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/remove-permissions-to-other-users/m-p/161368#M115299</guid>
      <dc:creator>vishal1</dc:creator>
      <dc:date>2009-03-05T09:23:31Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Permissions to other users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/remove-permissions-to-other-users/m-p/161369#M115300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can try setting ownership to the file.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Try using below code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="color:#FF4000;"&gt;AccessControlServiceSoapBindingStub accessService = WebServiceFactory.getAccessControlService();&lt;BR /&gt;accessService.setOwners(new Predicate(reference, STORE, null),userName);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Mahesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2009 13:58:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/remove-permissions-to-other-users/m-p/161369#M115300</guid>
      <dc:creator>mahkath</dc:creator>
      <dc:date>2009-03-09T13:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Permissions to other users</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/remove-permissions-to-other-users/m-p/161370#M115301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I want to know that whats the role of any logged in user over any space or file,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;how can I do it?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;What will be syntax for it?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Khinendra&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2009 11:01:54 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/remove-permissions-to-other-users/m-p/161370#M115301</guid>
      <dc:creator>khinendra</dc:creator>
      <dc:date>2009-11-12T11:01:54Z</dc:date>
    </item>
  </channel>
</rss>

