The top of my drl file is shown below. GlucoseDecision is, in fact, a type. But this is inside a large Eclipse project. Do I have to, in some fashion, separately jar the classes that I want to import in Drools? Does not appear to be the case when I look at the examples.
package edu.utah
#import edu.utah.cdmcc.entities.Patient;
import edu.utah.cdmcc.entities.GlucoseDecision;
rule "First Glucose Rule First File"
when
eval(1==1)
then
System.out.println("First Glucose Rule First File got called");
end