All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.drools.tutorials.banking.Example4 Maven / Gradle / Ivy

The newest version!
package org.drools.tutorials.banking;

public class Example4 {    
    public static void main(String[] args) throws Exception {
        Object[] cashflows = {
            new Cashflow(new SimpleDate("01/01/2007"), 300.00),
            new Cashflow(new SimpleDate("05/01/2007"), 100.00),
            new Cashflow(new SimpleDate("11/01/2007"), 500.00),
            new Cashflow(new SimpleDate("07/01/2007"), 800.00),
            new Cashflow(new SimpleDate("02/01/2007"), 400.00),
        };
        
        new RuleRunner().runRules( new String[] { "Example4.drl" },
                                   cashflows );
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy