1 Reply Latest reply on Sep 10, 2005 7:17 AM by tom.baeyens

    Does anybody know how to get the actor id in an ActionHandle

    camedinag

       

      ...
      <task-node ...>
       <transition to="somewhere">
       <action class="SomeHandler">
       </transition>
      </task-node>
      ...
      



      and tried

      
      
      class SomeHandler {
      
       public void execute(final ExecutionContext context) throws Exception {
       String actor = context.getTaskInstance().getActorId(); // returns null
       ...
       }
      }