Author: thomas.diesler(a)jboss.com
Date: 2008-11-27 06:38:47 -0500 (Thu, 27 Nov 2008)
New Revision: 3119
Modified:
jbpm3/trunk/modules/distribution/src/main/resources/installer/user-input-spec.xml
jbpm3/trunk/modules/integration/spec/src/main/java/org/jbpm/integration/model/EndEventImpl.java
Log:
Add support for SingleInFlowSupport
Modified:
jbpm3/trunk/modules/distribution/src/main/resources/installer/user-input-spec.xml
===================================================================
---
jbpm3/trunk/modules/distribution/src/main/resources/installer/user-input-spec.xml 2008-11-27
11:19:47 UTC (rev 3118)
+++
jbpm3/trunk/modules/distribution/src/main/resources/installer/user-input-spec.xml 2008-11-27
11:38:47 UTC (rev 3119)
@@ -17,8 +17,8 @@
<field type="radio" variable="dbSelection">
<description align="left" txt="Please choose your target
database" />
<spec>
- <choice txt="Hypersonic" value="hsqldb"
set="true"/>
- <choice txt="MySQL" value="mysql"/>
+ <choice txt="Hypersonic" value="hsqldb"/>
+ <choice txt="MySQL" value="mysql"
set="true"/>
<!-- choice txt="PostgreSQL" value="postgresql"/-->
<choice txt="Sybase" value="sybase"/>
</spec>
Modified:
jbpm3/trunk/modules/integration/spec/src/main/java/org/jbpm/integration/model/EndEventImpl.java
===================================================================
---
jbpm3/trunk/modules/integration/spec/src/main/java/org/jbpm/integration/model/EndEventImpl.java 2008-11-27
11:19:47 UTC (rev 3118)
+++
jbpm3/trunk/modules/integration/spec/src/main/java/org/jbpm/integration/model/EndEventImpl.java 2008-11-27
11:38:47 UTC (rev 3119)
@@ -21,8 +21,10 @@
*/
package org.jbpm.integration.model;
+import org.jboss.bpm.api.NotImplementedException;
import org.jboss.bpm.api.model.EndEvent;
import org.jboss.bpm.api.model.ProcessDefinition;
+import org.jboss.bpm.api.model.SequenceFlow;
import org.jbpm.graph.node.EndState;
/**
@@ -54,4 +56,9 @@
{
return EventType.End;
}
+
+ public SequenceFlow getInFlow()
+ {
+ throw new NotImplementedException();
+ }
}
Show replies by date