import eu.hsrw.ias.ggd.Notification; import eu.hsrw.ias.ggd.Severity import HttpCall.HttpPost; rule "Green House Critical" when warning: Notification(severity > Severity.Warning) then HttpPost httpPost = new HttpPost(); final String criticalGreenhouse = String.format("{\"id\":\"germes-greenhouse-status\",\"data\":{\"measured\":[{ \"status\": \"The status of the greenhouse is critical\"}]}}"); httpPost.HttpCallPost("http://connector.dev.whysor.com/default/insert?access_token=3hosOhAeh4k0XmcuAMQGfYldvTuQDvtAj2PJJ4irKPBefD5Ijij6gnUkLtVLd4fW",criticalGreenhouse); System.out.println(criticalGreenhouse); System.out.println("Green House critical, because of: '"+warning.getType()+"'"); end