Advertisement
Guest User

jbpm-orm.xml

a guest
Jul 18th, 2012
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.62 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <entity-mappings xmlns="http://java.sun.com/xml/ns/persistence/orm"
  3.                 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.                 xsi:schemaLocation="http://java.sun.com/xml/ns/persistence/orm orm_1_0.xsd"
  5.                 version="1.0">
  6.       <named-query name="ProcessInstancesWaitingForEvent">
  7.           <query>
  8. select
  9.     processInstanceInfo.processInstanceId
  10. from
  11.     ProcessInstanceInfo processInstanceInfo join processInstanceInfo.eventTypes eventTypes
  12. where
  13.     eventTypes = :type
  14.           </query>
  15.       </named-query>
  16. </entity-mappings>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement