javax.wsdl.extensions.http.HTTPBinding Maven / Gradle / Ivy
/*
* (c) Copyright IBM Corp 2001, 2005
*/
package javax.wsdl.extensions.http;
import javax.wsdl.extensions.*;
/**
* @author Matthew J. Duftler ([email protected])
*/
public interface HTTPBinding extends ExtensibilityElement, java.io.Serializable
{
/**
* Set the verb for this HTTP binding.
*
* @param verb the desired verb
*/
public void setVerb(String verb);
/**
* Get the verb for this HTTP binding.
*/
public String getVerb();
}