forked from kevin.shehu/GGD
9 lines
249 B
Plaintext
9 lines
249 B
Plaintext
|
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
|