if you have a namedquery with a list like :
@NamedQuery(name="selection" , query=" SELECT x FROM Employee x WHERE x.name IN ('Jack', 'Jill')")
is it possible to make the list to named bind variables so you set what you want with :
q.setParameter( ....... );
Any suggestions would be welcome