RE: [rules-users] Design Question (hashCode/equals/fact maintenance)

2008-07-17 Thread Fenderbosch, Eric
I just realized I could use the from CE to avoid this entire mess. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Fenderbosch, Eric Sent: Tuesday, July 15, 2008 10:38 AM To: rules-users@lists.jboss.org Subject: [rules-users] Design Question

Re: [rules-users] Re: variable 'or' constraints with a DSL

2008-07-17 Thread Reid Kaufmann
No, dash syntax is not the answer. Clever construction of the DSL mapping will get you what you need. Allow me to take your example and modify it. [condition][File]file_name = fileName [condition][File]dir_name = dirName [condition][File]group_name = gName [condition][File]user_name = uName

[rules-users] Mvel compilation error

2008-07-17 Thread John Squire
Hi All, We are intermittently getting mvel compilation errors with the following: Caused by: java.lang.IllegalArgumentException: object is not an instance of declaring class at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at

[rules-users] Using from

2008-07-17 Thread Aziz Boxwala
I have the following class structure. Class GrandFather { ListFather fathers; public ListFather getFathers() {return fathers;} } Class Father { int age; ListSon sons; public int getAge() {return age;} public ListSon getSons() {return sons;} } Class Son { int age; public int

[rules-users] RuleFlow Spanning Multiple Packages

2008-07-17 Thread Carlsen, Len
Hi All, Is it possible to define a rule flow that spans multiple packages (rulesets). Currently we have the 3 packages (and we are planning on dividing them into more sub-packages): Package1: 10,000 rules Package2: 5000 rules Package3: 1000 rules And we would like to create one rule

Re: [rules-users] Using from

2008-07-17 Thread Marcus Ilgner
Hi Aziz, On Thu, Jul 17, 2008 at 8:26 PM, Aziz Boxwala [EMAIL PROTECTED] wrote: I have the following class structure. Class GrandFather { ListFather fathers; public ListFather getFathers() {return fathers;} } Class Father { int age; ListSon sons; public int getAge() {return