Hello Droolers,<br><br>Here is my Scenario:<br><br>public class Parties {<br> protected List<Party> party;<br> ....<br>}<br><br>public class Party {<br> protected IdentificationGroup idGroup;<br>}<br><br>public class IdentificationGroup {<br>
protected String partyType;<br>}<br><br>I have a collection of "Party" objects in the statefulsession. I want to find in the collection whether there is a partyType of "SELLER" .<br><br>In Object Graph notation it will be something like Parites[0].idGroup.partyType is "SELLER". If not found execute the consequence.<br>
<br>Your help is very much appreciated.<br><br><br><br>