2 Replies Latest reply on Feb 1, 2011 7:31 PM by aguizar

    JBPM 3 : How to assigning a group task to a specific user

    leod38

      Hello everybody,

       

      I'm working with seam 2.1.2 and jbpm 3.2.7

       

      Here it's my processDefinition.xml

       

      <task-node name="step2">
              <task name="step2" >
                  <assignment pooled-actors="David,Yvon"/>
              </task>
              <transition name="toStep3" to="step3" />
              <transition name="cancel" to="error" />
      </task-node>
      

       

       

       

      I have a pooled-actors with two user David and Yvon

       

      To display the task list I use : PooledtaskInstanceList (group task list)

       

      When i am connected (Yvon) I see the task list

       

      Now I want to know java code to assign this task to me (Yvon)

       

      How do that ?

       

      Thanks in advance

       

      Yvon