4 Replies Latest reply on Sep 25, 2008 5:53 AM by kukeltje

    question on decision

    ajanz

      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?