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