blob: 0533845c951a65a3f3e344bb57668474f9ef1867 [file] [log] [blame]
package org.eclipse.jst.ws.internal.consumption.command.common;
import org.eclipse.wst.command.env.core.SimpleCommand;
import org.eclipse.wst.command.env.core.common.Environment;
import org.eclipse.wst.command.env.core.common.SimpleStatus;
import org.eclipse.wst.command.env.core.common.Status;
public class CreateServerCommand extends SimpleCommand
{
private String serverFactoryid;
private String serverInstanceId;
public Status execute(Environment env)
{
return new SimpleStatus("");
}
public void setServerFactoryid(String serverFactoryid)
{
this.serverFactoryid = serverFactoryid;
}
public String getServerInstanceId()
{
return serverInstanceId;
}
}