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

org.drools.examples.Cheese.drt Maven / Gradle / Ivy

The newest version!
template header
age
type
log

package org.drools.examples.templates;

global java.util.List list;

template "cheesefans"

rule "Cheese fans_@{row.rowNumber}"
	when
		Person(age == @{age})
		Cheese(type == "@{type}")
	then
		list.add("@{log}");
end
end template




© 2015 - 2025 Weber Informatics LLC | Privacy Policy