<?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 How to implement ACL in activiti? in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/how-to-implement-acl-in-activiti/m-p/64711#M40862</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi All,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We are looking for implementing ACL (Access Control List) for our web application which uses activiti workflows. Is there any support for ACL in activiti itself? I appreciate your suggestions on how to implement ACL in activiti.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Rahul Babar&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Jun 2011 06:00:48 GMT</pubDate>
    <dc:creator>rahulbabarit</dc:creator>
    <dc:date>2011-06-14T06:00:48Z</dc:date>
    <item>
      <title>How to implement ACL in activiti?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-implement-acl-in-activiti/m-p/64711#M40862</link>
      <description>Hi All,We are looking for implementing ACL (Access Control List) for our web application which uses activiti workflows. Is there any support for ACL in activiti itself? I appreciate your suggestions on how to implement ACL in activiti.Thanks,Rahul Babar</description>
      <pubDate>Tue, 14 Jun 2011 06:00:48 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-implement-acl-in-activiti/m-p/64711#M40862</guid>
      <dc:creator>rahulbabarit</dc:creator>
      <dc:date>2011-06-14T06:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to implement ACL in activiti?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-implement-acl-in-activiti/m-p/64712#M40863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The only thing activiti offers out of the box are users and groups (used for task assignement and authentication). More fine-grained access control (eg. limiting visibility of process-definitions or not allowing to start process-instance for certain definition) don't exist I'm affraid.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It all depends on how you want to use it. You can write a layer on top of activiti, which filters the result of certain calls to activiti, based on the user and checks all attempts to eg. start a process. Depends on how fine-grained you want your ACL's and how much you want to expose of the engine.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2011 07:13:50 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-implement-acl-in-activiti/m-p/64712#M40863</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2011-06-14T07:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to implement ACL in activiti?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-implement-acl-in-activiti/m-p/64713#M40864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;somewhat related: Would it be reasonable / feasible to have an extension point that allows you to delegate the candidate selection to a custom interface ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;pseudocode:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;&amp;lt;userTask id="theTask" name="my task" activiti:customCandidates="group(management), permission={UK,CZ,BE}" /&amp;gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;with something like this to be implemted by the app&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;// returns candidate users&lt;BR /&gt;public List&amp;lt;String&amp;gt; resolveCustomCandidates(String candidateExpression) {&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; //candidateExpression = group(management), permission={UK,CZ,BE}&lt;BR /&gt;&amp;nbsp; //this impl is responsible for parsing the expression and returning the list of candidates&lt;BR /&gt;}&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jorg&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2011 12:29:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-implement-acl-in-activiti/m-p/64713#M40864</guid>
      <dc:creator>heymjo</dc:creator>
      <dc:date>2011-06-14T12:29:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to implement ACL in activiti?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-implement-acl-in-activiti/m-p/64714#M40865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you're using activiti with spring, this is possible (workaround), by defining a bean in your clontext and using it in the candidateGroups expressions:&lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt;&lt;BR /&gt;activiti:candidateGroups="${candidateHandler.getGroupDandicates("group(management), permission={UK,CZ,BE}}")&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, If you're not using spring, you can pass the objects you want to be available in expressions, to the ProcessEngineConfiguration "beans" property.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2011 12:37:31 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-implement-acl-in-activiti/m-p/64714#M40865</guid>
      <dc:creator>frederikherema1</dc:creator>
      <dc:date>2011-06-14T12:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to implement ACL in activiti?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/how-to-implement-acl-in-activiti/m-p/64715#M40866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;that's a good enough 'workaround' , thanks !&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jorg&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2011 13:44:56 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/how-to-implement-acl-in-activiti/m-p/64715#M40866</guid>
      <dc:creator>heymjo</dc:creator>
      <dc:date>2011-06-14T13:44:56Z</dc:date>
    </item>
  </channel>
</rss>

