JBoss Community

Re: How do I get the Message Event EventType property field value?

created by byungwoojun in jBPM - View the full discussion

Thank you VERY much, Francesco!  It worked with a minor modification. 

 

eventNi.getEventNode().getType()



for (NodeInstance ni : myNodeInstances) {
     if(ni instanceof EventNodeInstance){
          EventNodeInstance eventNi=(EventNodeInstance)ni;
          System.out.println(eventNi.getEventNode().getType());   

     }
}

 

Thanks again.

bwj

Reply to this message by going to Community

Start a new discussion in jBPM at Community