Hi
I am using Drools 4.0.
As per the Drools 4.0 documentation if we are declaring a object as global then we can not use "insert(java.lang.Object Object)" method on this object.
It will be inserted implecetly.Now if we want to update this object in the RHS part of our rule file then we need the "FactHandle" for the object.
Now as we know that the return type of "setGlobal(java.lang.String identifier, java.lang.Object value)" method is "void".
So please tell me that how can i update this object in my rule file?
Thanks.