<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="http://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    Re: Find Tasks by Candidate-Group Name
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="http://community.jboss.org/people/mwohlf">Michael Wohlfart</a> in <i>jBPM</i> - <a href="http://community.jboss.org/message/564247#564247">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>Hi William,</p><p>I suppose this is what you want to do:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><pre class="jive-pre"><code class="jive-code jive-java"><font color="navy"><b>public</b></font> <font color="navy"><b>class</b></font> TaskCandidatesTest <font color="navy"><b>extends</b></font> JbpmTestCase <font color="navy">{</font>
&#160;
&#160; <font color="navy"><b>public</b></font> <font color="navy"><b>void</b></font> testCandidatePutsTaskBackInGroup() <font color="navy">{</font>
&#160;&#160;&#160; deployJpdlXmlString(
&#160;&#160;&#160;&#160;&#160; <font color="red">"&lt;process name='CandidatePutsTaskBackInGroup'&gt;"</font> +
&#160;&#160;&#160;&#160;&#160; <font color="red">"&#160; &lt;start&gt;"</font> +
&#160;&#160;&#160;&#160;&#160; <font color="red">"&#160;&#160;&#160; &lt;transition to='review' /&gt;"</font> +
&#160;&#160;&#160;&#160;&#160; <font color="red">"&#160; &lt;/start&gt;"</font> +
&#160;&#160;&#160;&#160;&#160; <font color="red">"&#160; &lt;task name='review' "</font> +
&#160;&#160;&#160;&#160;&#160; <font color="red">"&#160;&#160;&#160;&#160;&#160;&#160;&#160; candidate-groups='sales-dept'&gt;"</font> +
&#160;&#160;&#160;&#160;&#160; <font color="red">"&#160;&#160;&#160; &lt;transition to='wait' /&gt;"</font> +
&#160;&#160;&#160;&#160;&#160; <font color="red">"&#160; &lt;/task&gt;"</font> +
&#160;&#160;&#160;&#160;&#160; <font color="red">"&#160; &lt;state name='wait'/&gt;"</font> +
&#160;&#160;&#160;&#160;&#160; <font color="red">"&lt;/process&gt;"</font>
&#160;&#160;&#160; );
&#160;&#160;&#160; 
&#160;&#160;&#160; ProcessInstance processInstance = executionService.startProcessInstanceByKey(<font color="red">"CandidatePutsTaskBackInGroup"</font>);
&#160;&#160;&#160; String pid = processInstance.getId();
&#160;&#160;&#160; 
&#160;&#160;&#160; Task task = taskService.createTaskQuery().processInstanceId(pid).uniqueResult();
&#160;&#160;&#160; assertNull(task.getAssignee());
&#160;
&#160;
&#160;&#160;&#160; processEngine.execute(
&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy"><b>new</b></font> Command&lt;Void&gt;() <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy"><b>public</b></font> Void execute(Environment environment) <font color="navy"><b>throws</b></font> Exception <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; DbSessionImpl dbSessionImpl = environment.get(DbSessionImpl.class);
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Session session = dbSessionImpl.getSession();
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; assertNotNull(session);
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; List&lt;Task&gt; list =
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; session.createQuery(
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="red">" select p.task from "</font> + ParticipationImpl.class.getName() + <font color="red">" p "</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; + <font color="red">" where p.groupId = :groupId "</font>)
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; .setParameter(<font color="red">"groupId"</font>, <font color="red">"sales-dept"</font>)
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; .list();
&#160;
&#160;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; assertEquals(1, list.size());
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; assertEquals(<font color="red">"review"</font>, list.get(0).getName());
&#160;
&#160;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy"><b>return</b></font> <font color="navy"><b>null</b></font>;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font>
&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font>
&#160;&#160;&#160; );
&#160;
&#160;
&#160;&#160;&#160; taskService.takeTask(task.getId(), <font color="red">"johndoe"</font>);
&#160;&#160;&#160; 
&#160;&#160;&#160; task = taskService.createTaskQuery().processInstanceId(pid).uniqueResult();
&#160;&#160;&#160; assertEquals(<font color="red">"johndoe"</font>, task.getAssignee());
&#160;
&#160;
&#160;&#160;&#160; taskService.assignTask(task.getId(), <font color="navy"><b>null</b></font>);
&#160;&#160;&#160; 
&#160;&#160;&#160; task = taskService.getTask(task.getId());
&#160;&#160;&#160; assertNull(task.getAssignee());
&#160; <font color="navy">}</font>
 
<font color="navy">}</font>
&#160;
&#160;
</code></pre></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="http://community.jboss.org/message/564247#564247">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in jBPM at <a href="http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2034">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>