javax.wsdl.extensions.soap12.SOAP12Binding Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libre-wsdl4j Show documentation
Show all versions of libre-wsdl4j Show documentation
Open and Free WSDL library: Web Services Description Language. Libre-wsdl4j is a fork of WSDL4J 1.6.3. WSL4j is a Java stub generator for WSDL. Many software projects still depends on WSL4j, so the idea is that libre-wsdl4j should be an actively maintained version of this software on GitHub. "WSDL, that's an anchronym i haven't heard in almost ten years." Still big in the enterprise world" - comments on the Internet.
The newest version!
/*
* (c) Copyright IBM Corp 20016
*/
package javax.wsdl.extensions.soap12;
import javax.wsdl.extensions.*;
/**
* Copied from javax.wsdl.extensions.soap.SOAPBinding.
*/
public interface SOAP12Binding extends ExtensibilityElement, java.io.Serializable
{
/**
* Set the style for this SOAP binding.
*
* @param style the desired style
*/
void setStyle(String style);
/**
* Get the style for this SOAP binding.
*/
String getStyle();
/**
* Set the SOAP transport URI to be used for communicating
* with this binding.
*
* @param transportURI the URI describing the transport
* to be used
*/
void setTransportURI(String transportURI);
/**
* Get the transport URI to be used with this binding.
*
* @return the transport URI to be used
*/
String getTransportURI();
}