blob: d6dee50ff65da50e4c2e9d05d2db0003bdc2bb5c [file] [log] [blame]
package org.eclipse.bpel.apache.ode.runtime;
import java.util.HashMap;
import java.util.Map;
import org.eclipse.jst.server.generic.core.internal.GenericServerRuntime;
import org.eclipse.bpel.runtimes.IBPELRuntimeDelegate;
public class OdeServerRuntime extends GenericServerRuntime implements IBPELRuntimeDelegate {
public String getServerAddress()
{
return "localhost";
}
public String getPort()
{
Map m = getAttribute("generic_server_attributes", new HashMap());
return (String)m.get("port");
}
public String getDeployDir()
{
return "";
}
}