Hi all jbom users,
I'm developing a trouble ticketing interface with jBpm.
I have 2 swimlanes: the manager and the developer. I would need to assign the 
actorId of each task depending on the value of a Context variable.

I have saved in the context variable "manager" and "developer" the person who 
are in charge to supervision and develop the ticket.

  <swimlane name="manager" > 
  |       <assignment actor-id="#{manager}">
  |   </swimlane>
  |   
  |   <swimlane name="developer" /> 
  |       <assignment actor-id="#{developer}">
  |   </swimlane>
  | 
  |     <task-node name="AssignTicket">
  |     
  |         <task name="TicketAssignment" " swimlane="developer">
  |         </task>
  |          .........
  |     </task-node>
  | 
  |     <task-node name="TicketResolved">
  |     
  |         <task name="Ticketsolved" swimlane="manager">
  |         </task>
  |          .........
  |     </task-node>


Unfortunately I get "null" when I recall taskInstance.getActorId()
so assignment doesn't work this way......
any help ?
thanks 
john


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4176067#4176067

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4176067
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to