<div dir="ltr"><br>&nbsp;&nbsp; You can only use memberOf with Collection or arrays, so you should be binding your variables to the list, instead of the class:<br><br>Workdays( $wd : workDays )<br><br>&nbsp;&nbsp; []s<br>&nbsp;&nbsp; Edson<br><br><div class="gmail_quote">
2008/10/3 Marcin Krol <span dir="ltr">&lt;<a href="mailto:mrkafk@gmail.com">mrkafk@gmail.com</a>&gt;</span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>
I&#39;m doing this:<br>
<br>
ThermostatTimeData ttd1 = new ThermostatTimeData(&quot;January&quot;, &quot;Monday&quot;, 14);<br>
session.insert(ttd1);<br>
WorkDays wd = new WorkDays();<br>
session.insert(wd);<br>
session.fireAllRules();<br>
printoutThermostatData(ttd1);<br>
<br>
and then this:<br>
<br>
rule &quot;Rule 1&quot;<br>
&nbsp;when<br>
 &nbsp; &nbsp;$wd : com.sample.WorkDays()<br>
 &nbsp; &nbsp;$ttd : ThermostatTimeData ( day memberOf $wd )<br>
&nbsp;then<br>
 &nbsp; &nbsp; &nbsp; &nbsp;modify ( $ttd ) {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; setDaytype(&quot;workday&quot;)<br>
 &nbsp; &nbsp; &nbsp; &nbsp;}<br>
 &nbsp; &nbsp; &nbsp; &nbsp;System.out.println(&quot;Rule 1 fired.&quot;);<br>
end<br>
<br>
And I get the error like in subject. Anybody knows why?<br>
<br>
<br>
WorkDays.java:<br>
<br>
package com.sample;<br>
import java.util.ArrayList;<br>
import java.util.List;<br>
<br>
<br>
public class WorkDays {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;private List&lt;String&gt; wd;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;public WorkDays() {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;this.wd = new ArrayList&lt;String&gt;();<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;this.wd.add(&quot;Monday&quot;);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;this.wd.add(&quot;Tuesday&quot;);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;this.wd.add(&quot;Wednesday&quot;);<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;this.wd.add(&quot;Thursday&quot;); &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;this.wd.add(&quot;Friday&quot;); &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;public List&lt;String&gt; getWorkDays() {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;return this.wd;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;}<br>
}<br>
 &nbsp; &nbsp; &nbsp; &nbsp;<br>
<br>
_______________________________________________<br>
rules-users mailing list<br>
<a href="mailto:rules-users@lists.jboss.org" target="_blank">rules-users@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/rules-users" target="_blank">https://lists.jboss.org/mailman/listinfo/rules-users</a><br>
</blockquote></div><br><br clear="all"><br>-- <br> &nbsp;Edson Tirelli<br> &nbsp;JBoss Drools Core Development<br> &nbsp;JBoss, a division of Red Hat @ <a href="http://www.jboss.com">www.jboss.com</a><br>
</div>