i found this example
| <decision name=âCustomer Rank ?â>
| <transition to=âSend expensive giftâ>
| <condition expression=â#{customer.rank > 10}â
| />
| </transition>
| <transition to=âSend cheap giftâ>
| <condition expression=â#{customer.rank > 5}â />
| </transition>
| <transition to=âCheck paymentsâ />
| </decision>
Customer is a simple bean with getRank();
but how does this java bean and the processinstance come together?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4178711#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...