javax.wsdl.extensions.soap12.SOAP12HeaderFault Maven / Gradle / Ivy
/*
* (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
*/
public void setMessage(QName message);
/**
* Get the message for this SOAP header fault.
*/
public QName getMessage();
/**
* Set the part for this SOAP header fault.
*
* @param part the desired part
*/
public void setPart(String part);
/**
* Get the part for this SOAP header fault.
*/
public String getPart();
/**
* Set the use for this SOAP header fault.
*
* @param use the desired use
*/
public void setUse(String use);
/**
* Get the use for this SOAP header fault.
*/
public String getUse();
/**
* Set the encodingStyle for this SOAP header fault.
*
* @param encodingStyle the desired encodingStyle
*/
public void setEncodingStyle(String encodingStyle);
/**
* Get the encodingStyle for this SOAP header fault.
*/
public String getEncodingStyle();
/**
* Set the namespace URI for this SOAP header fault.
*
* @param namespaceURI the desired namespace URI
*/
public void setNamespaceURI(String namespaceURI);
/**
* Get the namespace URI for this SOAP header fault.
*/
public String getNamespaceURI();
}