Package javax.wsdl.extensions.soap
Interface SOAPHeader
-
- All Superinterfaces:
ExtensibilityElement,java.io.Serializable
- All Known Implementing Classes:
SOAPHeaderImpl
public interface SOAPHeader extends ExtensibilityElement, java.io.Serializable
- Author:
- Matthew J. Duftler (duftler@us.ibm.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddSOAPHeaderFault(SOAPHeaderFault soapHeaderFault)Add a SOAP header fault.java.util.ListgetEncodingStyles()Get the encodingStyles for this SOAP header.QNamegetMessage()Get the message for this SOAP header.java.lang.StringgetNamespaceURI()Get the namespace URI for this SOAP header.java.lang.StringgetPart()Get the part for this SOAP header.java.util.ListgetSOAPHeaderFaults()Get a list of all SOAP header faults contained in this SOAP header.java.lang.StringgetUse()Get the use for this SOAP header.SOAPHeaderFaultremoveSOAPHeaderFault(SOAPHeaderFault soapHeaderFault)Remove a SOAP header fault.voidsetEncodingStyles(java.util.List encodingStyles)Set the encodingStyles for this SOAP header.voidsetMessage(QName message)Set the message for this SOAP header.voidsetNamespaceURI(java.lang.String namespaceURI)Set the namespace URI for this SOAP header.voidsetPart(java.lang.String part)Set the part for this SOAP header.voidsetUse(java.lang.String use)Set the use for this SOAP header.-
Methods inherited from interface javax.wsdl.extensions.ExtensibilityElement
getElementType, getRequired, setElementType, setRequired
-
-
-
-
Method Detail
-
setMessage
void setMessage(QName message)
Set the message for this SOAP header.- Parameters:
message- the desired message
-
getMessage
QName getMessage()
Get the message for this SOAP header.
-
setPart
void setPart(java.lang.String part)
Set the part for this SOAP header.- Parameters:
part- the desired part
-
getPart
java.lang.String getPart()
Get the part for this SOAP header.
-
setUse
void setUse(java.lang.String use)
Set the use for this SOAP header.- Parameters:
use- the desired use
-
getUse
java.lang.String getUse()
Get the use for this SOAP header.
-
setEncodingStyles
void setEncodingStyles(java.util.List encodingStyles)
Set the encodingStyles for this SOAP header.- Parameters:
encodingStyles- the desired encodingStyles
-
getEncodingStyles
java.util.List getEncodingStyles()
Get the encodingStyles for this SOAP header.
-
setNamespaceURI
void setNamespaceURI(java.lang.String namespaceURI)
Set the namespace URI for this SOAP header.- Parameters:
namespaceURI- the desired namespace URI
-
getNamespaceURI
java.lang.String getNamespaceURI()
Get the namespace URI for this SOAP header.
-
addSOAPHeaderFault
void addSOAPHeaderFault(SOAPHeaderFault soapHeaderFault)
Add a SOAP header fault.- Parameters:
soapHeaderFault- the SOAP Header fault to be added.
-
removeSOAPHeaderFault
SOAPHeaderFault removeSOAPHeaderFault(SOAPHeaderFault soapHeaderFault)
Remove a SOAP header fault.- Parameters:
soapHeaderFault- the SOAP header fault to be removed.- Returns:
- the SOAP header fault which was removed.
-
getSOAPHeaderFaults
java.util.List getSOAPHeaderFaults()
Get a list of all SOAP header faults contained in this SOAP header.- Returns:
- a list of all SOAP header faults contained in this SOAP header.
-
-