javax.wsdl.extensions.soap12.SOAP12Body 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 2006
*/
package javax.wsdl.extensions.soap12;
import java.util.*;
import javax.wsdl.extensions.*;
/**
* Based on javax.wsdl.extensions.SOAPBody.
*/
public interface SOAP12Body extends ExtensibilityElement, java.io.Serializable
{
/**
* Set the parts for this SOAP body.
*
* @param parts the desired parts
*/
void setParts(List parts);
/**
* Get the parts for this SOAP body.
*/
List getParts();
/**
* Set the use for this SOAP body.
*
* @param use the desired use
*/
void setUse(String use);
/**
* Get the use for this SOAP body.
*/
String getUse();
/**
* Set the encodingStyle for this SOAP body.
*
* @param encodingStyle the desired encodingStyle
*/
void setEncodingStyle(String encodingStyle);
/**
* Get the encodingStyle for this SOAP body.
*/
String getEncodingStyle();
/**
* Set the namespace URI for this SOAP body.
*
* @param namespaceURI the desired namespace URI
*/
void setNamespaceURI(String namespaceURI);
/**
* Get the namespace URI for this SOAP body.
*/
String getNamespaceURI();
}