<?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: multi instance collection on xml in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/multi-instance-collection-on-xml/m-p/221324#M174454</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A sriptTask would effectively do the same: execution.setVariable('collection', java.util.Arrays.asList('a', 'b'));&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Dec 2015 14:13:29 GMT</pubDate>
    <dc:creator>jbarrez</dc:creator>
    <dc:date>2015-12-18T14:13:29Z</dc:date>
    <item>
      <title>multi instance collection on xml</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/multi-instance-collection-on-xml/m-p/221320#M174450</link>
      <description>I'm trying to create a task with a colection for multi insance approvals over some groups. It's an readonly list, so it makes more sense to write it directly on the bpmn xml. I tryed this:&amp;lt;userTask id="aprovarPCMC" name="Aprovar Plano de Curso e Matriz Curricular" activiti:candidateGroups="#{grou</description>
      <pubDate>Tue, 15 Dec 2015 17:31:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/multi-instance-collection-on-xml/m-p/221320#M174450</guid>
      <dc:creator>dthknt</dc:creator>
      <dc:date>2015-12-15T17:31:43Z</dc:date>
    </item>
    <item>
      <title>Re: multi instance collection on xml</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/multi-instance-collection-on-xml/m-p/221321#M174451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;No, i don't think so. That would work on a script task, but not in a JUEL expression. Maybe use a script execution listener just before the multi instance that sets it?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 10:02:21 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/multi-instance-collection-on-xml/m-p/221321#M174451</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2015-12-16T10:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: multi instance collection on xml</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/multi-instance-collection-on-xml/m-p/221322#M174452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Isn't there an easier solution ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Some tag where i would set the list like &amp;lt;sourceList&amp;gt;group1,group2,group3&amp;lt;/sourceList&amp;gt; ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If there isn't I'll just create a bean for that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also could you provide an example with ScriptTask ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm kind of new at Activiti and also the only one here messing with it !&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 12:38:46 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/multi-instance-collection-on-xml/m-p/221322#M174452</guid>
      <dc:creator>dthknt</dc:creator>
      <dc:date>2015-12-16T12:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: multi instance collection on xml</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/multi-instance-collection-on-xml/m-p/221323#M174453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I solved it with Java service task.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For future reference:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;serviceTask id="generateList" name="name"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; activiti:class="br.com.app.servicetask.ClassName"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;extensionElements&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;activiti:field name="values" stringValue="group1,group2" /&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/extensionElements&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/serviceTask&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The class just splits the field values and sets it to an variable&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Dec 2015 15:03:54 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/multi-instance-collection-on-xml/m-p/221323#M174453</guid>
      <dc:creator>dthknt</dc:creator>
      <dc:date>2015-12-16T15:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: multi instance collection on xml</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/multi-instance-collection-on-xml/m-p/221324#M174454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A sriptTask would effectively do the same: execution.setVariable('collection', java.util.Arrays.asList('a', 'b'));&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Dec 2015 14:13:29 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/multi-instance-collection-on-xml/m-p/221324#M174454</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2015-12-18T14:13:29Z</dc:date>
    </item>
  </channel>
</rss>

