javax.wsdl.extensions.soap.SOAPHeader Maven / Gradle / Ivy
/*
* (c) Copyright IBM Corp 2001, 2006
*/
package javax.wsdl.extensions.soap;
import java.util.*;
import javax.wsdl.extensions.*;
import javax.xml.namespace.*;
/**
* @author Matthew J. Duftler ([email protected])
*/
public interface SOAPHeader extends ExtensibilityElement, java.io.Serializable
{
/**
* Set the message for this SOAP header.
*
* @param message the desired message
*/
public void setMessage(QName message);
/**
* Get the message for this SOAP header.
*/
public QName getMessage();
/**
* Set the part for this SOAP header.
*
* @param part the desired part
*/
public void setPart(String part);
/**
* Get the part for this SOAP header.
*/
public String getPart();
/**
* Set the use for this SOAP header.
*
* @param use the desired use
*/
public void setUse(String use);
/**
* Get the use for this SOAP header.
*/
public String getUse();
/**
* Set the encodingStyles for this SOAP header.
*
* @param encodingStyles the desired encodingStyles
*/
public void setEncodingStyles(List encodingStyles);
/**
* Get the encodingStyles for this SOAP header.
*/
public List getEncodingStyles();
/**
* Set the namespace URI for this SOAP header.
*
* @param namespaceURI the desired namespace URI
*/
public void setNamespaceURI(String namespaceURI);
/**
* Get the namespace URI for this SOAP header.
*/
public String getNamespaceURI();
/**
* Add a SOAP header fault.
*
* @param soapHeaderFault the SOAP Header fault to be added.
*/
public void addSOAPHeaderFault(SOAPHeaderFault soapHeaderFault);
/**
* Remove a SOAP header fault.
*
* @param soapHeaderFault the SOAP header fault to be removed.
* @return the SOAP header fault which was removed.
*/
public SOAPHeaderFault removeSOAPHeaderFault(SOAPHeaderFault soapHeaderFault);
/**
* Get a list of all SOAP header faults contained in this SOAP header.
*
* @return a list of all SOAP header faults contained in this SOAP header.
*/
public List getSOAPHeaderFaults();
}