Some remarks to put things right, see below.
I meant it in the sense of in JESS/CLIPS you can assert an non-structured template to trigger another rule (as in this message board question where the issue was how to cause a rule to fire when another rule fires)JESS/CLIPS Example:(deftemplate fire-my-special-rule) //Notice no structure of the template, its just an object called 'fire-my-special-rule'(defrule initial-rule(blah...blah...patterns which make the first rule fire)=>(do some RHS actions)(assert (fire-my-special-rule)))(defrule special-rule(fire-my-special-rule) //here im just checking for the existance or truth of 'fire-my-special-rule'=>(RHS ACTIONS))What i was getting at was, in JESS/CLIPS you can achieve what this question was asking by creating a deftemplate in the rule file that has no structure and use it to trigger another rule. In Drools you can not do this exactly,
Sorry, going on tangent, but yes i misspoke when i said Drools did not have Logical Assertions, it does. It just doesn't allow you to assert an unstructured template as does other rule engines do
(which would have answered the original question in an easier / less hacked manner than my Flag POJO suggestion)