org.drools.tutorials.banking.Example5.drl Maven / Gradle / Ivy
The newest version!
package org.drools.tutorials.banking
rule "Rule 01"
when
$cashflow : TypedCashflow( $date : date,
$amount : amount,
type == TypedCashflow.CREDIT )
not TypedCashflow( date < $date,
type == TypedCashflow.CREDIT )
then
System.out.println("Credit: "+$date+" :: "+$amount);
retract($cashflow);
end
© 2015 - 2025 Weber Informatics LLC | Privacy Policy