<?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: Replacing Activiti group, user, membership tables in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/replacing-activiti-group-user-membership-tables/m-p/134953#M94714</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;As you can see it's a property of the ProcessEngineConfigurationImpl class. So if you use the StandaloneProcessEngineConfiguration class you can inject the customSessionFactories on that class.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So just cast the ProcessEngineConfiguration to StandaloneProcessEngineConfiguration.&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>Thu, 13 Dec 2012 20:41:29 GMT</pubDate>
    <dc:creator>trademak</dc:creator>
    <dc:date>2012-12-13T20:41:29Z</dc:date>
    <item>
      <title>Replacing Activiti group, user, membership tables</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/replacing-activiti-group-user-membership-tables/m-p/134948#M94709</link>
      <description>Hi all ^^I've seen many thread about the subject : "how to change activiti tables by mine" but no real explication on "How to do it". In addition, lot of them explains that changing it could be very unstable in older versions.That's why i would know if someone could explain me, step by step, if it's</description>
      <pubDate>Tue, 11 Dec 2012 15:49:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/replacing-activiti-group-user-membership-tables/m-p/134948#M94709</guid>
      <dc:creator>vire7777</dc:creator>
      <dc:date>2012-12-11T15:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Activiti group, user, membership tables</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/replacing-activiti-group-user-membership-tables/m-p/134949#M94710</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;Changing it only to have Long ids instead of String ones seems to be a bit strange to me.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But if you want to implement this yourself you basically have to override the UserManager and GroupManager classes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In my Activiti in Action book this is explained in details for using a LDAP server. You can look at the book's code examples as well.&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, 12 Dec 2012 08:28:35 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/replacing-activiti-group-user-membership-tables/m-p/134949#M94710</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2012-12-12T08:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Activiti group, user, membership tables</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/replacing-activiti-group-user-membership-tables/m-p/134950#M94711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I would read that ^^&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Dec 2012 09:41:00 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/replacing-activiti-group-user-membership-tables/m-p/134950#M94711</guid>
      <dc:creator>vire7777</dc:creator>
      <dc:date>2012-12-12T09:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Activiti group, user, membership tables</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/replacing-activiti-group-user-membership-tables/m-p/134951#M94712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A question about the article and how to implement it !&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've created a ProcessEngineConfiguration by :&lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt;ProcessEngineConfiguration conf = ProcessEngineConfiguration.createStandaloneProcessEngineConfiguration();&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;Then i have done some changes like : &lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt;conf.setJobExecutorActivate(true);&lt;BR /&gt;conf.setDatabaseSchemaUpdate(conf.DB_SCHEMA_UPDATE_TRUE);&lt;BR /&gt;…&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;But how to add my new customSessionFactories like in your book ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&amp;lt;property name="customSessionFactories"&amp;gt;&lt;BR /&gt;&amp;lt;list&amp;gt;&lt;BR /&gt;&amp;lt;bean class="org.bpmnwithactiviti.chapter10.ldap.&lt;BR /&gt;➥ LDAPUserManagerFactory"&amp;gt;&lt;BR /&gt;&amp;lt;constructor-arg ref="ldapConnectionParams" /&amp;gt;&lt;BR /&gt;&amp;lt;/bean&amp;gt;&lt;BR /&gt;&amp;lt;bean class="org.bpmnwithactiviti.chapter10.ldap.&lt;BR /&gt;➥ LDAPGroupManagerFactory"&amp;gt;&lt;BR /&gt;&amp;lt;constructor-arg ref="ldapConnectionParams" /&amp;gt;&lt;BR /&gt;&amp;lt;/bean&amp;gt;&lt;BR /&gt;&amp;lt;/list&amp;gt;&lt;BR /&gt;&amp;lt;/property&amp;gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't see any getter/setter for that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Does it exist an other way to create them ?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Dec 2012 14:26:24 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/replacing-activiti-group-user-membership-tables/m-p/134951#M94712</guid>
      <dc:creator>vire7777</dc:creator>
      <dc:date>2012-12-12T14:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Activiti group, user, membership tables</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/replacing-activiti-group-user-membership-tables/m-p/134952#M94713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;No one can explain me how to integrate the customSessionFactories in my ProcessEngineConfiguration ? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I really see no "setter" method…&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2012 11:00:12 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/replacing-activiti-group-user-membership-tables/m-p/134952#M94713</guid>
      <dc:creator>vire7777</dc:creator>
      <dc:date>2012-12-13T11:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Activiti group, user, membership tables</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/replacing-activiti-group-user-membership-tables/m-p/134953#M94714</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;As you can see it's a property of the ProcessEngineConfigurationImpl class. So if you use the StandaloneProcessEngineConfiguration class you can inject the customSessionFactories on that class.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So just cast the ProcessEngineConfiguration to StandaloneProcessEngineConfiguration.&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>Thu, 13 Dec 2012 20:41:29 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/replacing-activiti-group-user-membership-tables/m-p/134953#M94714</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2012-12-13T20:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing Activiti group, user, membership tables</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/replacing-activiti-group-user-membership-tables/m-p/134954#M94715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Now i ve done it ^^&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2012 10:29:58 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/replacing-activiti-group-user-membership-tables/m-p/134954#M94715</guid>
      <dc:creator>vire7777</dc:creator>
      <dc:date>2012-12-14T10:29:58Z</dc:date>
    </item>
  </channel>
</rss>

