[
https://jira.jboss.org/jira/browse/JBPM-1126?page=com.atlassian.jira.plug...
]
Thomas Diesler updated JBPM-1126:
---------------------------------
Fix Version/s: jBPM 3.3.2 GA
Revisit open bugs
ProcessDeifnition substates load into top level node list
---------------------------------------------------------
Key: JBPM-1126
URL:
https://jira.jboss.org/jira/browse/JBPM-1126
Project: JBoss jBPM
Issue Type: Bug
Components: Core Engine
Affects Versions: jBPM 3.1.4
Environment: ANY
Reporter: James Violette
Priority: Minor
Fix For: jBPM 3.3.2 GA
The ProcessDefinition.hbm.xml nodes list must have a where clause to avoid loading
substate nodes into the top level node list.
The released nodes list definition
<list name="nodes" cascade="all">
<cache usage="nonstrict-read-write"/>
<key column="PROCESSDEFINITION_" />
<list-index column="NODECOLLECTIONINDEX_" />
<one-to-many class="org.jbpm.graph.def.Node" />
</list>
should be
<list name="nodes" cascade="all" where="superstate is
null" >
<cache usage="nonstrict-read-write"/>
<key column="PROCESSDEFINITION_" />
<list-index column="NODECOLLECTIONINDEX_" />
<one-to-many class="org.jbpm.graph.def.Node" />
</list>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira