Re: [rules-users] Rule Example

2013-11-07 Thread Demian Calcaprina
It would be nice if you can put some of your requirements here. So that people who has similar requirements may benefit for the discussion.. Regards, Demian On Thu, Nov 7, 2013 at 8:28 AM, chakez30 wrote: > rule "if you have nothing good to say" > when >Response( information == "Bully") >

Re: [rules-users] Rule Example

2013-11-07 Thread chakez30
rule "if you have nothing good to say" when Response( information == "Bully") then System.out.println("Just shut up."); end -- View this message in context: http://drools.46999.n3.nabble.com/Rule-Example-tp4026674p4026676.html Sent from the Drools: User forum mailing list archive at Nabbl

Re: [rules-users] Rule Example

2013-11-07 Thread Michael Anstis
rule "don't ask stupid questions" when Request( information == null ) then System.out.println("Move along, nothing to see here."); end On 7 November 2013 11:10, chakez30 wrote: > I have some requirements regarding with my final project can someone help > me > formulate the rules? Thanks!