I have a POJO Class "Dummy" which contains a List of String "nstr".
I am using contains operator "containsItem" as follows :-
rule "DSCR_Rule2" dialect "mvel" when Dummy( this containsItem "hi" ) then System.out.println("yes"); end
As per documentation, i have added the evaluator definition in kmodule.xml , and i can compile the project in workbench after a git comit. But operator does not show up in guided editor even after a tomcat restart. What am i missing ?