I'm using JPA-2.1 and want a stored procedure and with a Collection as a parameter. Is this possible?
<named-stored-procedure-query name="myProc"
procedure-name="my_proc">
<parameter name="i_collection" class="Collection" mode="IN">
</parameter>
</named-stored-procedure-query>
With the above I get a java.lang.ClassNotFoundException
.
If not, where is the documentation about what is allowed in the class attribute?