<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:times new roman, new york, times, serif;font-size:12pt">i see...<br>when 3.2 will be available?<br>:-)<br><br>ok...<br>so i'm writing the rules the wrong way?<br>i need to put the and's on the same line separated by ','?<br>i if wanted to the it the way i wrote the rules i would have to put a different name to each of the objects right? (mto1:MegaTransferObject mto2:MegaTransferObject, ect)<br><br>this is a little complicated and i dindt saw it on the documentation...where i can read about it?<br>i will rewrite the rules to match the right way...<br><br>thanks...<br><br><br><br><br><div>&nbsp;</div>Joel G. Rivera-Gonzalez<br>PRT<br><br>"The first 90% of a project takes 90% of the time, the last 10% takes the other 90% of the time" - Murphy's Law<div style="font-family: times new roman,new york,times,serif; font-size: 12pt;"><br><br><div style="font-family: times new
 roman,new york,times,serif; font-size: 12pt;">----- Original Message ----<br>From: Edson Tirelli &lt;tirelli@post.com&gt;<br>To: Rules Users List &lt;rules-users@lists.jboss.org&gt;<br>Sent: Tuesday, January 9, 2007 6:44:22 PM<br>Subject: Re: [rules-users] About String..."==" same as ".equals"?<br><br><div>&nbsp;&nbsp; Joel,<br><br>&nbsp;&nbsp; If it is the same object that you are trying to match against all of <br>those constraints, just list all your constraints separated by ',' (comma):<br><br>rule "dtv_discount_request"<br>when<br>&nbsp;&nbsp;&nbsp;&nbsp; mto : MegaTransferObject( orders_FkOrderTypeId == <br>Constants.NEW_COMPLETED_ORDER_TYPE,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ct:other_ChannelType -&gt;&nbsp;&nbsp;( !
 <br>ct.equalsIgnoreCase(Constants.CHANNEL_TYPE_RESELLER)),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; orders_FkChannelId != <br>Constants.ISP_CHANNEL_ID_PRW,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; orders_FkChannelId != <br>Constants.ISP_CHANNEL_ID_TLD,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; orders_FkChannelId != <br>Constants.ISP_CHANNEL_ID_AOL,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
 other_HasDtvDiscountRequest == false,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pl:phoneList_GovernmentAccount -&gt; ( (pl <br>== null) || ( pl.equals(Constants.FLAG_NO)) ),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cp:customerProfile_DtvDiscount -&gt; ( (cp <br>== null) || ( cp.equals(Constants.FLAG_NO)) ),<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; oa:other_AccountType -&gt; ( ( oa == null) <br>|| ( oa.equals( Constants.PHONE_TYPE_RESIDENTIAL)) ) )<br>then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;menu.add(new
 String[]{Constants.SERVICE_ASSURANCE_TREE_MENU_DSL, <br>Constants.SERVICE_ASSURANCE_MENU_DTV_DISCOUNT_REQUEST});<br>end<br><br><br>&nbsp;&nbsp;&nbsp;&nbsp;Just remember:<br><br>* you must have one and only one pattern for each single object you want <br>to match in each rule, i.e., the mapping between patterns and object <br>instances is always one-to-one.<br><br>* constraints are separated by ',' (comma), and ',' has an implicit <br>meaning of AND between constraints<br><br>* version 3.0.x does not support OR between constraints, so the way <br>around it is to use predicates like I demonstrated above. Version 3.2 <br>already has support for connective OR constraints.<br><br>&nbsp;&nbsp;&nbsp;&nbsp;I hope it helps.<br><br>&nbsp;&nbsp;&nbsp;&nbsp;[]s<br>&nbsp;&nbsp;&nbsp;&nbsp;Edson<br><br><br>Joel G. Rivera-González wrote:<br><br>&gt; i see...that would works...but now if you add stuff and make a rule <br>&gt; that look like this, the binding will not
 work...<br>&gt;<br>&gt; rule "dtv_discount_request"<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; when<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MegaTransferObject(orders_FkOrderTypeId == <br>&gt; Constants.NEW_COMPLETED_ORDER_TYPE) and<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; not MegaTransferObject(ct:other_ChannelType -&gt;&nbsp;&nbsp;<br>&gt; (ct.equalsIgnoreCase(Constants.CHANNEL_TYPE_RESELLER))) and<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (not MegaTransferObject(orders_FkChannelId == <br>&gt; Constants.ISP_CHANNEL_ID_PRW) and<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; not MegaTransferObject(orders_FkChannelId == <br>&gt; Constants.ISP_CHANNEL_ID_TLD) and<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; not MegaTransferObject(orders_FkChannelId == <br>&gt; Constants.ISP_CHANNEL_ID_AOL)) and<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (MegaTransferObject(phoneList_GovernmentAccount == null) or <br>&gt;
 MegaTransferObject(phoneList_GovernmentAccount == Constants.FLAG_NO)) and<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (MegaTransferObject(customerProfile_DtvDiscount == null) or <br>&gt; MegaTransferObject(customerProfile_DtvDiscount == Constants.FLAG_NO)) and<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (MegaTransferObject(other_AccountType == null) or <br>&gt; MegaTransferObject(other_AccountType == <br>&gt; Constants.PHONE_TYPE_RESIDENTIAL)) and<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MegaTransferObject(other_HasDtvDiscountRequest == false)<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; then<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; menu.add(new <br>&gt; String[]{Constants.SERVICE_ASSURANCE_TREE_MENU_DSL, <br>&gt; Constants.SERVICE_ASSURANCE_MENU_DTV_DISCOUNT_REQUEST});<br>&gt; end<br>&gt;&nbsp;&nbsp;<br>&gt; i was trying to bre creative and add megaTO: before all the <br>&gt; MegaTransferObject and it gave me the compilation error
 you <br>&gt; mention...but only after the third megaTO:<br>&gt;<br>&gt;<br>&gt; Joel G. Rivera-Gonzalez<br>&gt; PRT<br>&gt;<br>&gt; "The first 90% of a project takes 90% of the time, the last 10% takes <br>&gt; the other 90% of the time" - Murphy's Law<br>&gt;<br>&gt;<br>&gt; ----- Original Message ----<br>&gt; From: Edson Tirelli &lt;tirelli@post.com&gt;<br>&gt; To: Rules Users List &lt;rules-users@lists.jboss.org&gt;<br>&gt; Sent: Tuesday, January 9, 2007 4:39:57 PM<br>&gt; Subject: Re: [rules-users] About String..."==" same as ".equals"?<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;Joel,<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;I just noticed in your last rule you do the binding to the same <br>&gt; variable:<br>&gt;<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; megaTO:MegaTransferObject(other_AccountType == "RMS")<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; megaTO:MegaTransferObject(other_HasDtvDiscountRequest ==
 false)<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;I thought that feature was already disabled... :( it should give you<br>&gt; an error of duplicate variable declaration! is it not raising an error<br>&gt; when compiling the rule??<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;The correct way of doing it if it is the same object is getting both<br>&gt; constraints in the same pattern:<br>&gt;<br>&gt; megaTO: MegaTransferObject( other_AccountType == "RMS",<br>&gt; other_HasDtvDiscountRequest == false)<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;So, rules 1 and 2 are correct in not firing, since you would need 2<br>&gt; different objects to match the 2 patterns in them.<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;The mapping between patterns and objects is "one-to-one".<br>&gt;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;[]s<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;Edson<br>&gt;&nbsp;&nbsp; <br>&gt;<br>&gt;<br>&gt; Joel G. Rivera-González wrote:<br>&gt;<br>&gt; &gt; 1. i downloaded the latest release from the download
 page...<br>&gt; &gt; 2. just one MTO...the returning arrayList should have arround 10 values.<br>&gt; &gt;<br>&gt; &gt; will do an example and (class and ruleFile) and send it to your email...<br>&gt; &gt;<br>&gt; &gt; thanks<br>&gt; &gt;&nbsp;&nbsp;<br>&gt; &gt; Joel G. Rivera-Gonzalez<br>&gt; &gt; PRT<br>&gt; &gt;<br>&gt; &gt; "The first 90% of a project takes 90% of the time, the last 10% takes<br>&gt; &gt; the other 90% of the time" - Murphy's Law<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; ----- Original Message ----<br>&gt; &gt; From: Edson Tirelli &lt;tirelli@post.com&gt;<br>&gt; &gt; To: Rules Users List &lt;rules-users@lists.jboss.org&gt;<br>&gt; &gt; Sent: Tuesday, January 9, 2007 3:29:26 PM<br>&gt; &gt; Subject: Re: [rules-users] About String..."==" same as ".equals"?<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;Joel,<br>&gt; &gt;<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;Your rules seems to be correct.<br>&gt;
 &gt;&nbsp;&nbsp;&nbsp;&nbsp;Questions:<br>&gt; &gt;<br>&gt; &gt; 1. What JBRules version are you using?<br>&gt; &gt;<br>&gt; &gt; 2. How many MTO instances are you asserting in the working memory, that<br>&gt; &gt; would match each Pattern in your rule?<br>&gt; &gt;<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;It may be an issue with "or". Can you provide a self contained test<br>&gt; &gt; for me to investigate?<br>&gt; &gt;<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;Thank you<br>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Edson<br>&gt; &gt;<br>&gt; &gt; Joel G. Rivera-González wrote:<br>&gt; &gt;<br>&gt; &gt; &gt; i have to be doing something wrong...but it make no sense...<br>&gt; &gt; &gt; a MegaTransferObject is asserted.<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; case1: No rules fired.<br>&gt; &gt; &gt; rule "dtv_discount_request"<br>&gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp; when<br>&gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MegaTransferObject(other_AccountType == null)
 or<br>&gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MegaTransferObject(other_AccountType ==<br>&gt; &gt; &gt; Constants.PHONE_TYPE_RESIDENTIAL)<br>&gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MegaTransferObject(other_HasDtvDiscountRequest == false)<br>&gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp; then<br>&gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; menu.add(new<br>&gt; &gt; &gt; String[]{Constants.SERVICE_ASSURANCE_TREE_MENU_DSL,<br>&gt; &gt; &gt; Constants.SERVICE_ASSURANCE_MENU_DTV_DISCOUNT_REQUEST});<br>&gt; &gt; &gt; end<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; case 2: no rule fired.<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; rule "dtv_discount_request"<br>&gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp; when<br>&gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MegaTransferObject(other_AccountType == null) or<br>&gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MegaTransferObject(other_AccountType == "RMS")<br>&gt; &gt;
 &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MegaTransferObject(other_HasDtvDiscountRequest == false)<br>&gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp; then<br>&gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; menu.add(new<br>&gt; &gt; &gt; String[]{Constants.SERVICE_ASSURANCE_TREE_MENU_DSL,<br>&gt; &gt; &gt; Constants.SERVICE_ASSURANCE_MENU_DTV_DISCOUNT_REQUEST});<br>&gt; &gt; &gt; end<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; case 3: rule fired<br>&gt; &gt; &gt;&nbsp;&nbsp;<br>&gt; &gt; &gt; rule "dtv_discount_request"<br>&gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp; when<br>&gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; megaTO:MegaTransferObject(other_AccountType == "RMS")<br>&gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; megaTO:MegaTransferObject(other_HasDtvDiscountRequest == <br>&gt; false)<br>&gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp; then<br>&gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; menu.add(new<br>&gt; &gt; &gt;
 String[]{Constants.SERVICE_ASSURANCE_TREE_MENU_DSL,<br>&gt; &gt; &gt; Constants.SERVICE_ASSURANCE_MENU_DTV_DISCOUNT_REQUEST});<br>&gt; &gt; &gt; end<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; i really dont get it...<br>&gt; &gt; &gt; i must not be getting something...<br>&gt; &gt; &gt; help...<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; Joel G. Rivera-Gonzalez<br>&gt; &gt; &gt; PRT<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; "The first 90% of a project takes 90% of the time, the last 10% takes<br>&gt; &gt; &gt; the other 90% of the time" - Murphy's Law<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; ----- Original Message ----<br>&gt; &gt; &gt; From: Edson Tirelli &lt;tirelli@post.com&gt;<br>&gt; &gt; &gt; To: Rules Users List &lt;rules-users@lists.jboss.org&gt;<br>&gt; &gt; &gt; Sent: Tuesday, January 9, 2007 7:26:35 AM<br>&gt; &gt; &gt; Subject: Re: [rules-users] About String..."==" same as ".equals"?<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt;
 &gt;&nbsp;&nbsp;&nbsp;&nbsp;Joel,<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;This is the correct syntax and it works (at least we didn't get a<br>&gt; &gt; &gt; report for it not working yet):<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; Object(variable == Constants.value)<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;Can you please elaborate about the problem you are having in order<br>&gt; &gt; &gt; for us to help solving it? If it is a bug we need to fix.<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;Thank you,<br>&gt; &gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Edson<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; Joel G. Rivera-González wrote:<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; most (if not all) of my rules will have conditions like this:<br>&gt; &gt; &gt; &gt; Object(variable == Constants.value)<br>&gt; &gt; &gt; &gt; this is not working...<br>&gt; &gt; &gt; &gt; BUT if i change the Constants.value to corresponding value from the<br>&gt;
 &gt; &gt; &gt; constants class it will work...<br>&gt; &gt; &gt; &gt; is there any other way other than this Object(a:variable-&gt;&nbsp;&nbsp;<br>&gt; &gt; &gt; &gt; (a.equals(Constants.value)) to do it?<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt;&nbsp;&nbsp;<br>&gt; &gt; &gt; &gt; Joel G. Rivera-Gonzalez<br>&gt; &gt; &gt; &gt; PRT<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt; "The first 90% of a project takes 90% of the time, the last 10% <br>&gt; takes<br>&gt; &gt; &gt; &gt; the other 90% of the time" - Murphy's Law<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; <br>&gt; &gt;------------------------------------------------------------------------<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt; &gt;_______________________________________________<br>&gt; &gt; &gt; &gt;rules-users mailing list<br>&gt; &gt; &gt; &gt;rules-users@lists.jboss.org<br>&gt; &gt; &gt; &gt;<a target="_blank"
 href="https://lists.jboss.org/mailman/listinfo/rules-users">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>&gt; &gt; &gt; &gt;&nbsp;&nbsp;<br>&gt; &gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; --<br>&gt; &gt; &gt; Edson Tirelli<br>&gt; &gt; &gt; Software Engineer - JBoss Rules Core Developer<br>&gt; &gt; &gt; Office: +55 11 3124-6000<br>&gt; &gt; &gt; Mobile: +55 11 9218-4151<br>&gt; &gt; &gt; JBoss, a division of Red Hat @ <a target="_blank" href="http://www.jboss.com">www.jboss.com</a> <br>&gt; &lt;<a target="_blank" href="http://www.jboss.com">http://www.jboss.com</a>&gt; &lt;<a target="_blank" href="http://www.jboss.com">http://www.jboss.com</a>&gt;<br>&gt; &gt; &lt;<a target="_blank" href="http://www.jboss.com">http://www.jboss.com</a>&gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;<br>&gt; &gt; &gt; _______________________________________________<br>&gt; &gt; &gt; rules-users mailing list<br>&gt; &gt; &gt;
 rules-users@lists.jboss.org<br>&gt; &gt; &gt; <a target="_blank" href="https://lists.jboss.org/mailman/listinfo/rules-users">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>&gt; &gt; &gt;<br>&gt; &gt; <br>&gt; &gt;------------------------------------------------------------------------<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;_______________________________________________<br>&gt; &gt; &gt;rules-users mailing list<br>&gt; &gt; &gt;rules-users@lists.jboss.org<br>&gt; &gt; &gt;<a target="_blank" href="https://lists.jboss.org/mailman/listinfo/rules-users">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>&gt; &gt; &gt;&nbsp;&nbsp;<br>&gt; &gt; &gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; --<br>&gt; &gt; Edson Tirelli<br>&gt; &gt; Software Engineer - JBoss Rules Core Developer<br>&gt; &gt; Office: +55 11 3124-6000<br>&gt; &gt; Mobile: +55 11 9218-4151<br>&gt; &gt; JBoss, a division of Red Hat @ <a target="_blank" href="http://www.jboss.com">www.jboss.com</a>
 &lt;<a target="_blank" href="http://www.jboss.com">http://www.jboss.com</a>&gt; <br>&gt; &lt;<a target="_blank" href="http://www.jboss.com">http://www.jboss.com</a>&gt;<br>&gt; &gt;<br>&gt; &gt;<br>&gt; &gt; _______________________________________________<br>&gt; &gt; rules-users mailing list<br>&gt; &gt; rules-users@lists.jboss.org<br>&gt; &gt; <a target="_blank" href="https://lists.jboss.org/mailman/listinfo/rules-users">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>&gt; &gt;<br>&gt; &gt;------------------------------------------------------------------------<br>&gt; &gt;<br>&gt; &gt;_______________________________________________<br>&gt; &gt;rules-users mailing list<br>&gt; &gt;rules-users@lists.jboss.org<br>&gt; &gt;<a target="_blank" href="https://lists.jboss.org/mailman/listinfo/rules-users">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>&gt; &gt;&nbsp;&nbsp;<br>&gt; &gt;<br>&gt;<br>&gt;<br>&gt; -- <br>&gt; Edson Tirelli<br>&gt; Software
 Engineer - JBoss Rules Core Developer<br>&gt; Office: +55 11 3124-6000<br>&gt; Mobile: +55 11 9218-4151<br>&gt; JBoss, a division of Red Hat @ <a target="_blank" href="http://www.jboss.com">www.jboss.com</a> &lt;<a target="_blank" href="http://www.jboss.com">http://www.jboss.com</a>&gt;<br>&gt;<br>&gt;<br>&gt; _______________________________________________<br>&gt; rules-users mailing list<br>&gt; rules-users@lists.jboss.org<br>&gt; <a target="_blank" href="https://lists.jboss.org/mailman/listinfo/rules-users">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>&gt;<br>&gt;------------------------------------------------------------------------<br>&gt;<br>&gt;_______________________________________________<br>&gt;rules-users mailing list<br>&gt;rules-users@lists.jboss.org<br>&gt;<a target="_blank" href="https://lists.jboss.org/mailman/listinfo/rules-users">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>&gt;&nbsp;&nbsp;<br>&gt;<br><br><br>-- <br> Edson
 Tirelli<br> Software Engineer - JBoss Rules Core Developer<br> Office: +55 11 3124-6000<br> Mobile: +55 11 9218-4151<br> JBoss, a division of Red Hat @ <a target="_blank" href="http://www.jboss.com">www.jboss.com</a><br><br><br>_______________________________________________<br>rules-users mailing list<br>rules-users@lists.jboss.org<br><a target="_blank" href="https://lists.jboss.org/mailman/listinfo/rules-users">https://lists.jboss.org/mailman/listinfo/rules-users</a><br></div></div><br></div></div></body></html>