<?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: Activiti event for process instance creation? in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196344#M149474</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;According to the current source code, it seems to me that a process instance is created through the method [font=Courier]org.activiti.engine.impl.cmd.StartProcessInstanceCmd.execute()[/font]:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; …&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 1 // Start the process instance&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 2 ExecutionEntity processInstance = processDefinition.createProcessInstance(businessKey);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 3 &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 4 // now set the variables passed into the start command&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 5 if (variables != null) {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 6&amp;nbsp;&amp;nbsp; processInstance.setVariables(variables);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 7 }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 8&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 9 // now set processInstance name&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;10 if (processInstanceName != null) {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;11&amp;nbsp;&amp;nbsp; processInstance.setName(processInstanceName);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;12 }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;13&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;14 processInstance.start();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;15&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;16 return processInstance;&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 event ENTITY_CREATED is fired at line 1 by [font=Courier]processDefinition.createProcessInstance(businessKey)[/font], but variables are set into the process instance &lt;/SPAN&gt;&lt;SPAN style="text-decoration: underline;"&gt;after&lt;/SPAN&gt;&lt;SPAN&gt; the process instance creation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;After other investigations in source, the start of the process instance at line 14 performs the operation [font=Courier]org.activiti.engine.impl.pvm.runtime.AtomicOperation.PROCESS_START[/font] that is implemented by [font=Courier]org.activiti.engine.impl.pvm.runtime.AtomicOperationProcessStart[/font]. This implementation fires the event ENTITY_INITIALIZED.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Moreover, the events ENTITY_CREATED and ENTITY_INITIALIZED are not fired only for on a process instance creation. I receive them on an identify link add.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So, I must filter events in the event listener as following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;final ActivitiEntityWithVariablesEvent eventImpl = (ActivitiEntityWithVariablesEvent)event;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if (eventImpl.getEntity() instanceof ExecutionEntity) {&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;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&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;Is it correct ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For performance reason and to avoid filtering, it seems to me that an event PROCESS_STARTED should be introduced and fired in the same location than the event ENTITY_INITIALIZED in [font=Courier]AtomicOperationProcessStart[/font]. What do you think ? If you are ok, I can contribute it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your help,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Christophe DENEUX&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Apr 2015 13:37:54 GMT</pubDate>
    <dc:creator>cdeneux</dc:creator>
    <dc:date>2015-04-02T13:37:54Z</dc:date>
    <item>
      <title>Activiti event for process instance creation?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196341#M149471</link>
      <description>Hi all,I try to inject dedicated processing on a process instance creation, completion and deletion (for example adding a log trace), with the following constraints:The processing must be applied on all my process definitions deployedThe processing must not impact the process definition because it's</description>
      <pubDate>Wed, 01 Apr 2015 08:18:53 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196341#M149471</guid>
      <dc:creator>cdeneux</dc:creator>
      <dc:date>2015-04-01T08:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti event for process instance creation?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196342#M149472</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;You can listen to ENTITY_CREATED. That event is fired when a process instance is started.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2015 11:17:32 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196342#M149472</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2015-04-01T11:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti event for process instance creation?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196343#M149473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Tijs,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is event ENTITY CREATED fired &lt;/SPAN&gt;&lt;SPAN style="text-decoration: underline;"&gt;only&lt;/SPAN&gt;&lt;SPAN&gt; when a process instance is started ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the associated event listener, I try to get variables passed to [font=Courier]RuntimeService.startProcessInstanceById()[/font] used to create the process instance. But I'm not able to retrieve the process instance through a [font=Courier]ProcessInstanceQuery[/font], my query result [font=Courier]processResult[/font] is [font=Courier]null[/font]:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;final ProcessInstanceQuery processQuery = event.getEngineServices().getRuntimeService()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .createProcessInstanceQuery()&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; .processInstanceId(processInstanceId)&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; .includeProcessVariables();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;final ProcessInstance processResult = processQuery.singleResult();&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;How can I retrieve the process instance created when receiving the event ENTITY_CREATED ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your help&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Christophe DENEUX&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2015 15:03:36 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196343#M149473</guid>
      <dc:creator>cdeneux</dc:creator>
      <dc:date>2015-04-01T15:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti event for process instance creation?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196344#M149474</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;According to the current source code, it seems to me that a process instance is created through the method [font=Courier]org.activiti.engine.impl.cmd.StartProcessInstanceCmd.execute()[/font]:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; …&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 1 // Start the process instance&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 2 ExecutionEntity processInstance = processDefinition.createProcessInstance(businessKey);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 3 &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 4 // now set the variables passed into the start command&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 5 if (variables != null) {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 6&amp;nbsp;&amp;nbsp; processInstance.setVariables(variables);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 7 }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 8&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 9 // now set processInstance name&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;10 if (processInstanceName != null) {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;11&amp;nbsp;&amp;nbsp; processInstance.setName(processInstanceName);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;12 }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;13&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;14 processInstance.start();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;15&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;16 return processInstance;&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 event ENTITY_CREATED is fired at line 1 by [font=Courier]processDefinition.createProcessInstance(businessKey)[/font], but variables are set into the process instance &lt;/SPAN&gt;&lt;SPAN style="text-decoration: underline;"&gt;after&lt;/SPAN&gt;&lt;SPAN&gt; the process instance creation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;After other investigations in source, the start of the process instance at line 14 performs the operation [font=Courier]org.activiti.engine.impl.pvm.runtime.AtomicOperation.PROCESS_START[/font] that is implemented by [font=Courier]org.activiti.engine.impl.pvm.runtime.AtomicOperationProcessStart[/font]. This implementation fires the event ENTITY_INITIALIZED.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Moreover, the events ENTITY_CREATED and ENTITY_INITIALIZED are not fired only for on a process instance creation. I receive them on an identify link add.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So, I must filter events in the event listener as following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;code&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;final ActivitiEntityWithVariablesEvent eventImpl = (ActivitiEntityWithVariablesEvent)event;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;if (eventImpl.getEntity() instanceof ExecutionEntity) {&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;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&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;Is it correct ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For performance reason and to avoid filtering, it seems to me that an event PROCESS_STARTED should be introduced and fired in the same location than the event ENTITY_INITIALIZED in [font=Courier]AtomicOperationProcessStart[/font]. What do you think ? If you are ok, I can contribute it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your help,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Christophe DENEUX&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2015 13:37:54 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196344#M149474</guid>
      <dc:creator>cdeneux</dc:creator>
      <dc:date>2015-04-02T13:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti event for process instance creation?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196345#M149475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I agree that a process start event would make a lot of sense. A contribution would certainly be appreciated!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 12:57:02 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196345#M149475</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2015-04-07T12:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti event for process instance creation?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196346#M149476</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've started a contribution [1] waiting to create a pull request. And I've just created the JIRA issue [2]. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What do you think about a call activity with the new event ? I think that the event PROCESS_STARTED should be fired also when starting the new process instance created through the call activity.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Christophe DENEUX&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[1]: &lt;/SPAN&gt;&lt;A href="https://github.com/cdeneux/Activiti/tree/event_PROCESS_INSTANCE_STARTED" rel="nofollow noopener noreferrer"&gt;https://github.com/cdeneux/Activiti/tree/event_PROCESS_INSTANCE_STARTED&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;[2]: &lt;/SPAN&gt;&lt;A href="https://activiti.atlassian.net/browse/ACT-3994" rel="nofollow noopener noreferrer"&gt;https://activiti.atlassian.net/browse/ACT-3994&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2015 06:59:26 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196346#M149476</guid>
      <dc:creator>cdeneux</dc:creator>
      <dc:date>2015-04-08T06:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti event for process instance creation?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196347#M149477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;&amp;gt; I think that the event PROCESS_STARTED should be fired also when starting the new process instance created through the call activity.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I agree. But if possible, would be good if that information could be contained in the event too.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2015 10:05:13 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196347#M149477</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2015-04-08T10:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti event for process instance creation?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196348#M149478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have added to the event the following information to track the process in which a call activity starts another process:&lt;/SPAN&gt;&lt;BR /&gt;&lt;UL&gt;&lt;LI&gt;process instance id of the nested process,&lt;/LI&gt;&lt;LI&gt;process definition if of the nested process.&lt;/LI&gt;&lt;/UL&gt;&lt;SPAN&gt;These attributes are set to null for a main process (not invoked through a call activity)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you think that is right, I could create a pull request.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Christophe DENEUX&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Apr 2015 15:02:56 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196348#M149478</guid>
      <dc:creator>cdeneux</dc:creator>
      <dc:date>2015-04-09T15:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti event for process instance creation?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196349#M149479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Wouldn't it make more sense to have the parent information in there (instead of the nested)?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Feel free to push a Pull Request, we can surely discuss further there too, with some real code &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 12:15:06 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196349#M149479</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2015-04-14T12:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti event for process instance creation?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196350#M149480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Joram,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've just pushed the pull request: &lt;/SPAN&gt;&lt;A href="https://github.com/Activiti/Activiti/pull/570" rel="nofollow noopener noreferrer"&gt;https://github.com/Activiti/Activiti/pull/570&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You're right, the two attributes of the event mentioned below should be renamed (from 'nestedProcess…Id' to 'parentProcess…Id') . They hold the parent process instance identifiers for a nested process, or null for a main process.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;–&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Christophe&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 13:33:03 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196350#M149480</guid>
      <dc:creator>cdeneux</dc:creator>
      <dc:date>2015-04-16T13:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: Activiti event for process instance creation?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196351#M149481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Christophe, we go through the pull requests normally once a week on a dedicated day. Will update on github when there is need for discussion.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 08:08:48 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/activiti-event-for-process-instance-creation/m-p/196351#M149481</guid>
      <dc:creator>jbarrez</dc:creator>
      <dc:date>2015-04-21T08:08:48Z</dc:date>
    </item>
  </channel>
</rss>

