Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
package Account
import dave.test.Account
rule "loan_OK"
dialect "mvel"
when
Account( age > "18" )
then
Account fact0 = new Account();
fact0.setCurrent_Ballance( 1000 );
insert(fact0 );
end
package Account
import dave.test.Account
rule "loan_OK"
dialect "mvel"
when
Account( age > "18" )
then
System.out.println("Customer is full age");
end