Author: thomas.diesler(a)jboss.com
Date: 2008-12-05 14:08:28 -0500 (Fri, 05 Dec 2008)
New Revision: 3239
Modified:
jbpm3/trunk/modules/integration/jboss42/src/main/etc/jboss-beans.xml
jbpm3/trunk/modules/integration/jboss42/src/main/java/org/jbpm/integration/jboss42/PARSubDeployer.java
Log:
Move ProcessEngineImpl to service
Modified: jbpm3/trunk/modules/integration/jboss42/src/main/etc/jboss-beans.xml
===================================================================
--- jbpm3/trunk/modules/integration/jboss42/src/main/etc/jboss-beans.xml 2008-12-05
17:58:45 UTC (rev 3238)
+++ jbpm3/trunk/modules/integration/jboss42/src/main/etc/jboss-beans.xml 2008-12-05
19:08:28 UTC (rev 3239)
@@ -5,12 +5,12 @@
<deployment
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:jboss:bean-deployer bean-deployer_1_0.xsd"
xmlns="urn:jboss:bean-deployer">
<!-- Locate the single instance of the kernel -->
- <bean name="BPMKernelLocator"
class="org.jboss.bpm.api.client.internal.KernelLocator">
+ <bean name="BPMKernelLocator"
class="org.jboss.bpm.api.config.internal.KernelLocator">
<property name="kernel"><inject
bean="jboss.kernel:service=Kernel" /></property>
</bean>
<!-- The ProcessEngine -->
- <bean name="BPMProcessEngine"
class="org.jbpm.integration.spec.client.ProcessEngineImpl">
+ <bean name="BPMProcessEngine"
class="org.jbpm.integration.spec.service.ProcessEngineImpl">
<property name="services">
<set elementClass="org.jboss.bpm.api.service.Service">
<inject bean="BPMDeploymentService"/>
Modified:
jbpm3/trunk/modules/integration/jboss42/src/main/java/org/jbpm/integration/jboss42/PARSubDeployer.java
===================================================================
---
jbpm3/trunk/modules/integration/jboss42/src/main/java/org/jbpm/integration/jboss42/PARSubDeployer.java 2008-12-05
17:58:45 UTC (rev 3238)
+++
jbpm3/trunk/modules/integration/jboss42/src/main/java/org/jbpm/integration/jboss42/PARSubDeployer.java 2008-12-05
19:08:28 UTC (rev 3239)
@@ -25,10 +25,10 @@
import java.net.URL;
-import org.jboss.bpm.api.client.Configuration;
-import org.jboss.bpm.api.client.ProcessEngine;
+import org.jboss.bpm.api.config.Configuration;
import org.jboss.bpm.api.deployment.Deployment;
import org.jboss.bpm.api.service.DeploymentService;
+import org.jboss.bpm.api.service.ProcessEngine;
import org.jboss.deployment.DeploymentException;
import org.jboss.deployment.DeploymentInfo;
import org.jboss.deployment.SubDeployerSupport;