]
Tibor Zimányi updated DROOLS-1564:
----------------------------------
Labels: oopath (was: )
Change oopath syntax
--------------------
Key: DROOLS-1564
URL:
https://issues.jboss.org/browse/DROOLS-1564
Project: Drools
Issue Type: Enhancement
Components: core engine
Reporter: Mario Fusco
Assignee: Mario Fusco
Priority: Blocker
Labels: oopath
Fix For: 7.0.0.Final
It is required to change the oopath syntax to make it closer to xpath one. This means
that constraints will have to be put between square brackets instead of curly ones and
inline cast should be expressed out of constraints. In other words the following oopath:
{code}
/list{#SubClass, prop == 0}
{code}
should become:
{code}
/list#SubClass[prop == 0]
{code}