I'm trying to write rules in Drools Expert. In the when part of the rule, I check some properties of an Application object. This object contains a List and I would like to check if a bunch of rules apply to all objects of SomeOtherType in this list. The rule should fire only when the constraints are valid for ALL objects in that list.

rule "Application eligible"
    when
        app : Application(
               some constrains
               & write some constraints for all objects in app.getList() (a method
               that returns a List<SomeOtherType> object)
        )
    then 
        // application is eligible
end
link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Insert all your SomeOtherType instances into the working memory too if you haven't already. Then try something like this if you want to check that all SomeOtherType's have the color RED:

rule "Application eligible"
when
    $app : Application()
    forall( $x : SomeOtherType( application == $app ) 
            SomeOtherType( this == $x, color == RED ) )
then 
    // application is eligible
end
link|improve this answer
Is it possible without installing all the SomeOtherType instances into working memory? For example using forall together with from? – John Manak Feb 26 '11 at 22:03
Yes, but from starts backwards chaining instead of forward chaining IIRC, which can have performance consequences (see manual). There are also other interesting keywords that might work, such as collect IIRC (also see manual). – Geoffrey De Smet Feb 27 '11 at 15:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.