ok it seems to be working.. I can see the extends keyword getting generated.
I will try to simulate a simple scenario again.. thanks folks for your help
Thanks
Amit
On Thu, Feb 11, 2010 at 6:44 PM, Amit Kumar <amitkumar(a)gmail.com> wrote:
Thanks Michael for the quick reply
I don't see that anywhere in the documentation and when I do a view package
source then I do not see any extends keyword.
Can you point me to some documentaion in this regards on how it works.
Thanks
Amit
On Thu, Feb 11, 2010 at 5:00 PM, Michael Rhoden <
mrhoden(a)franklinamerican.com> wrote:
> The category rule should just extend all child rules in that category.
> If all is working your generated DRL should have "extends" in the
> "tax" (etc) rules.
>
> -Michael
>
> On Feb 11, 2010, at 6:33 PM, Amit Kumar <amitkumar(a)gmail.com> wrote:
>
> > Hi Folks,
> >
> > I am looking at the category rules and have a scenario to use it.
> > Goes like this
> >
> > Person
> > Name String
> > City String
> > income int
> >
> > I want to categorize the rules in states
> >
> > -US
> > -- NewYork
> > -- Seatle
> > -- SanFrancisco
> >
> >
> > I have created 3 rules
> > rule "people living in NY"
> > when
> > Person(city="NewYork"
> > then
> > end
> >
> > rule "people living in Seatle"
> > when
> > Person(city="Seatle"
> > then
> > end
> >
> > rule "people living in SFO"
> > when
> > Person(city="SanFrancisco"
> > then
> > end
> >
> > I associated the above rules with appropriate categories
> >
> >
> > Then I create tax rules
> >
> > rule "ny tax" -- category "NewYork"
> > when
> > Person()
> > then
> > Log .. Tax = 10%
> > end
> >
> > rule "WA tax" -- category "Seatle"
> > when
> > Person()
> > then
> > Log .. Tax = 20%
> > end
> >
> > rule "ny tax" -- category "NewYork"
> > when
> > Person()
> > then
> > Log .. Tax = 10%
> > end
> >
> >
> >
> > When I create a object in test scenario of person type .. then all
> > the rules get executed.. The category rule is not having any effect
> >
> > Is there any documentation on how this works??
> >
> > Thanks
> > Amit
> > _______________________________________________
> > rules-users mailing list
> > rules-users(a)lists.jboss.org
> >
https://lists.jboss.org/mailman/listinfo/rules-users
> _______________________________________________
> rules-users mailing list
> rules-users(a)lists.jboss.org
>
https://lists.jboss.org/mailman/listinfo/rules-users
>