GGD/target/classes/rules/warnings.drl

9 lines
249 B
Plaintext
Raw Normal View History

import eu.hsrw.ias.ggd.Notification;
import eu.hsrw.ias.ggd.Severity;
rule "Green House Critical"
when
warning: Notification(severity > Severity.Info)
then
System.out.println("Green House critical, because of: '"+warning.getType()+"'");
end