JBoss Community

How to add Human task Groups and Users in a spring configuration.

created by Miloud Haimoune in jBPM - View the full discussion

Hi all,

 

I m using jbpm 5.3 in a spring application, a part  of the config :

 

 

........  
<bean id="taskService" class="org.jbpm.task.service.TaskService">
    <constructor-arg index="0" ref="htEMF"/>
    <constructor-arg index="1">
      <bean factory-method="getSystemEventListener" class="org.drools.SystemEventListenerFactory"/>
    </constructor-arg>
  </bean>

  <bean id="localTaskService" class="org.jbpm.task.service.local.LocalTaskService">
    <constructor-arg index="0" ref="taskService"/>
  </bean>

  <bean id="humanTaskHandler" class="org.jbpm.process.workitem.wsht.SyncWSHumanTaskHandler">
    <property name="client" ref="localTaskService"/>
  </bean>
..
<drools:ksession id="ksession2" type="stateful" kbase="kbase2" node="node1">
    <drools:configuration>
      <drools:work-item-handlers>      
        <drools:work-item-handler  name="Human Task" ref="humanTaskHandler"/>
      </drools:work-item-handlers>
      <drools:jpa-persistence>
        <drools:transaction-manager ref="jbpmTxManager"/>
        <drools:entity-manager-factory ref="jbpmEMF"/>
      </drools:jpa-persistence>
    </drools:configuration>
  </drools:ksession>

 

do any one know how to add the Users and Groups (taskSession.addUser( new User("Administrator")  );) etc ....

 

thnaks,

Reply to this message by going to Community

Start a new discussion in jBPM at Community