javax.wsdl.extensions.soap12.SOAP12HeaderFault 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 javax.wsdl.extensions.*;
import javax.xml.namespace.*;
/**
* Based on javax.wsdl.extensions.SOAPHeaderFault.
*/
public interface SOAP12HeaderFault extends ExtensibilityElement,
java.io.Serializable
{
/**
* Set the message for this SOAP header fault.
*
* @param message the desired message
*/
void setMessage(QName message);
/**
* Get the message for this SOAP header fault.
*/
QName getMessage();
/**
* Set the part for this SOAP header fault.
*
* @param part the desired part
*/
void setPart(String part);
/**
* Get the part for this SOAP header fault.
*/
String getPart();
/**
* Set the use for this SOAP header fault.
*
* @param use the desired use
*/
void setUse(String use);
/**
* Get the use for this SOAP header fault.
*/
String getUse();
/**
* Set the encodingStyle for this SOAP header fault.
*
* @param encodingStyle the desired encodingStyle
*/
void setEncodingStyle(String encodingStyle);
/**
* Get the encodingStyle for this SOAP header fault.
*/
String getEncodingStyle();
/**
* Set the namespace URI for this SOAP header fault.
*
* @param namespaceURI the desired namespace URI
*/
void setNamespaceURI(String namespaceURI);
/**
* Get the namespace URI for this SOAP header fault.
*/
String getNamespaceURI();
}