I have a scenario where I need to call a static method in DRL file. example :
//2
rule "availableTentativeDateIfUsersAvailableGT1"
salience 2
when
event : Event(eventName == "Event1")
then
getDates(event.parameterization.usersAvailability);
end
Now i need to get the response from the method in DRL. Is it possible?