Author: mriou
Date: Wed Aug 23 09:04:18 2006
New Revision: 434067
URL: http://svn.apache.org/viewvc?rev=434067&view=rev
Log:
Removed the deploy and undeploy methods from BpelServer as it's redundant with
the DeploymentService interface.
Modified:
incubator/ode/trunk/bpel-api/src/main/java/org/apache/ode/bpel/iapi/BpelServer.java
Modified:
incubator/ode/trunk/bpel-api/src/main/java/org/apache/ode/bpel/iapi/BpelServer.java
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-api/src/main/java/org/apache/ode/bpel/iapi/BpelServer.java?rev=434067&r1=434066&r2=434067&view=diff
==============================================================================
---
incubator/ode/trunk/bpel-api/src/main/java/org/apache/ode/bpel/iapi/BpelServer.java
(original)
+++
incubator/ode/trunk/bpel-api/src/main/java/org/apache/ode/bpel/iapi/BpelServer.java
Wed Aug 23 09:04:18 2006
@@ -22,8 +22,6 @@
import org.apache.ode.bpel.pmapi.BpelManagementFacade;
import javax.xml.namespace.QName;
-import java.io.File;
-import java.util.Collection;
/**
@@ -115,20 +113,6 @@
* @return transactional [EMAIL PROTECTED] BpelEngine} interfacce
*/
BpelEngine getEngine();
-
- /**
- * Deploy a process from the filesystem.
- * @param deploymentUnitDirectory directory containing all deployment files
- * @return A collection of the process ids of the deployed processes
- */
- Collection<QName> deploy(File deploymentUnitDirectory);
-
- /**
- * Undeploy a package.
- * @param file package file
- * @return successful or not
- */
- boolean undeploy(File file);
/**
* Activate a process.