Files
cs8803p4/rules/BasicAccountRule.drl

7 lines
247 B
Plaintext

package org.drools.examples.simple;
rule "Account balance is less than 100"
when
$account : Account( balance < 100 ) // condition
then
System.out.println("Account number: " + $account.getId() + " is below 100"); // consequence
end