Interface SOAPHeader
- All Superinterfaces:
ExtensibilityElement, Serializable
- All Known Implementing Classes:
SOAPHeaderImpl
- Author:
- Matthew J. Duftler (duftler@us.ibm.com)
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddSOAPHeaderFault(SOAPHeaderFault soapHeaderFault) Add a SOAP header fault.Get the encodingStyles for this SOAP header.Get the message for this SOAP header.Get the namespace URI for this SOAP header.getPart()Get the part for this SOAP header.Get a list of all SOAP header faults contained in this SOAP header.getUse()Get the use for this SOAP header.removeSOAPHeaderFault(SOAPHeaderFault soapHeaderFault) Remove a SOAP header fault.voidsetEncodingStyles(List encodingStyles) Set the encodingStyles for this SOAP header.voidsetMessage(QName message) Set the message for this SOAP header.voidsetNamespaceURI(String namespaceURI) Set the namespace URI for this SOAP header.voidSet the part for this SOAP header.voidSet the use for this SOAP header.Methods inherited from interface ExtensibilityElement
getElementType, getRequired, setElementType, setRequired
-
Method Details
-
setMessage
Set the message for this SOAP header.- Parameters:
message- the desired message
-
getMessage
QName getMessage()Get the message for this SOAP header. -
setPart
-
getPart
String getPart()Get the part for this SOAP header. -
setUse
-
getUse
String getUse()Get the use for this SOAP header. -
setEncodingStyles
Set the encodingStyles for this SOAP header.- Parameters:
encodingStyles- the desired encodingStyles
-
getEncodingStyles
List getEncodingStyles()Get the encodingStyles for this SOAP header. -
setNamespaceURI
Set the namespace URI for this SOAP header.- Parameters:
namespaceURI- the desired namespace URI
-
getNamespaceURI
String getNamespaceURI()Get the namespace URI for this SOAP header. -
addSOAPHeaderFault
Add a SOAP header fault.- Parameters:
soapHeaderFault- the SOAP Header fault to be added.
-
removeSOAPHeaderFault
Remove a SOAP header fault.- Parameters:
soapHeaderFault- the SOAP header fault to be removed.- Returns:
- the SOAP header fault which was removed.
-
getSOAPHeaderFaults
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.
-