blob: 0e87ff5e7cdc32f2e61ecd98516468c90863b849 [file] [log] [blame]
/**
* <copyright>
*
* Licensed Material - Property of IBM
* (C) Copyright IBM Corp. 2000, 2002 - All Rights Reserved.
* US Government Users Restricted Rights - Use, duplication or disclosure
* restricted by GSA ADP Schedule Contract with IBM Corp.
*
* </copyright>
*/
package org.eclipse.jst.ws.internal.ext.test;
import java.util.List;
import org.eclipse.jst.ws.internal.ext.WebServiceFinishCommand;
import org.eclipse.wst.server.core.IServer;
public interface WebServiceTestFinishCommand extends WebServiceFinishCommand
{
/**
* If the command needs a server this is the chosen
* client serverID
* @param sampleServerTypeID
*/
public void setServerTypeID(String serviceServerTypeID);
/**
* This is the IServer if required
* @param sampleExistingServer
*/
public void setExistingServer(IServer serviceExistingServer);
/**
* This is the endpoints if monitor service is enabled
* @param endpoints
*/
public void setEndpoint(List endpoints);
}