Author: bbrodt
Date: 2011-02-22 16:57:14 -0500 (Tue, 22 Feb 2011)
New Revision: 29275
Modified:
workspace/bbrodt/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/plugin.properties
workspace/bbrodt/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/bpel/apache/ode/runtime/OdeServerRuntime.java
workspace/bbrodt/bpel/plugins/org.eclipse.bpel.ui/META-INF/MANIFEST.MF
workspace/bbrodt/bpel/plugins/org.eclipse.bpel.ui/src/org/eclipse/bpel/ui/wizards/WSDLCustomPage.java
Log:
missed some changes from working copy
Modified:
workspace/bbrodt/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/plugin.properties
===================================================================
---
workspace/bbrodt/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/plugin.properties 2011-02-22
21:55:30 UTC (rev 29274)
+++
workspace/bbrodt/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/plugin.properties 2011-02-22
21:57:14 UTC (rev 29275)
@@ -2,4 +2,6 @@
providerName = JBoss by Red Hat
odeHome = ODE's home directory:
tomcatHome = Tomcat's home directory:
-port = Port:
\ No newline at end of file
+serverAddress = Server address:
+port = Port:
+vmArguments = VM Arguments:
Modified:
workspace/bbrodt/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/bpel/apache/ode/runtime/OdeServerRuntime.java
===================================================================
---
workspace/bbrodt/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/bpel/apache/ode/runtime/OdeServerRuntime.java 2011-02-22
21:55:30 UTC (rev 29274)
+++
workspace/bbrodt/bpel/plugins/org.eclipse.bpel.apache.ode.runtime/src/org/eclipse/bpel/apache/ode/runtime/OdeServerRuntime.java 2011-02-22
21:57:14 UTC (rev 29275)
@@ -8,9 +8,20 @@
public class OdeServerRuntime extends GenericServerRuntime implements
IBPELRuntimeDelegate {
+ public String getServerAddress()
+ {
+ Map m = getAttribute("generic_server_instance_properties", new HashMap());
+ return (String)m.get("serverAddress");
+ }
+
public String getPort()
{
- Map m = getAttribute("generic_server_attributes", new HashMap());
+ Map m = getAttribute("generic_server_instance_properties", new HashMap());
return (String)m.get("port");
}
+
+ public String getDeployDir()
+ {
+ return "/ode/processes";
+ }
}
Modified: workspace/bbrodt/bpel/plugins/org.eclipse.bpel.ui/META-INF/MANIFEST.MF
===================================================================
--- workspace/bbrodt/bpel/plugins/org.eclipse.bpel.ui/META-INF/MANIFEST.MF 2011-02-22
21:55:30 UTC (rev 29274)
+++ workspace/bbrodt/bpel/plugins/org.eclipse.bpel.ui/META-INF/MANIFEST.MF 2011-02-22
21:57:14 UTC (rev 29275)
@@ -72,4 +72,5 @@
org.eclipse.bpel.ui.util.marker,
org.eclipse.bpel.ui.wizards
Bundle-RequiredExecutionEnvironment: J2SE-1.5
-Import-Package: org.eclipse.bpel.validator
+Import-Package: org.eclipse.bpel.runtimes,
+ org.eclipse.bpel.validator
Modified:
workspace/bbrodt/bpel/plugins/org.eclipse.bpel.ui/src/org/eclipse/bpel/ui/wizards/WSDLCustomPage.java
===================================================================
---
workspace/bbrodt/bpel/plugins/org.eclipse.bpel.ui/src/org/eclipse/bpel/ui/wizards/WSDLCustomPage.java 2011-02-22
21:55:30 UTC (rev 29274)
+++
workspace/bbrodt/bpel/plugins/org.eclipse.bpel.ui/src/org/eclipse/bpel/ui/wizards/WSDLCustomPage.java 2011-02-22
21:57:14 UTC (rev 29275)
@@ -4,13 +4,12 @@
import java.util.Map;
import org.eclipse.bpel.runtimes.IBPELModuleFacetConstants;
+import org.eclipse.bpel.runtimes.IBPELRuntimeDelegate;
import org.eclipse.bpel.ui.BPELUIPlugin;
import org.eclipse.bpel.ui.IBPELUIConstants;
import org.eclipse.bpel.ui.Templates;
import org.eclipse.bpel.ui.Templates.Template;
-import org.eclipse.bpel.runtimes.IBPELRuntimeDelegate;
import org.eclipse.core.resources.IProject;
-import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.jface.wizard.WizardPage;
import org.eclipse.osgi.util.NLS;
import org.eclipse.swt.SWT;
@@ -28,7 +27,6 @@
import org.eclipse.wst.common.project.facet.core.ProjectFacetsManager;
import org.eclipse.wst.common.project.facet.core.runtime.IRuntime;
import org.eclipse.wst.server.core.IRuntimeType;
-import org.eclipse.wst.server.core.IRuntimeWorkingCopy;
import org.eclipse.wst.server.core.ServerCore;
import org.eclipse.wst.server.core.model.RuntimeDelegate;
Show replies by date