Package javax.wsdl.extensions.soap12
Interface SOAP12Header
- All Superinterfaces:
ExtensibilityElement
,Serializable
- All Known Implementing Classes:
SOAP12HeaderImpl
Based on javax.wsdl.extensions.SOAPHeader.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addSOAP12HeaderFault
(SOAP12HeaderFault soap12HeaderFault) Add a SOAP header fault.Get the encodingStyle 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.removeSOAP12HeaderFault
(SOAP12HeaderFault soap12HeaderFault) Remove a SOAP header fault.void
setEncodingStyle
(String encodingStyle) Set the encodingStyle for this SOAP header.void
setMessage
(QName message) Set the message for this SOAP header.void
setNamespaceURI
(String namespaceURI) Set the namespace URI for this SOAP header.void
Set the part for this SOAP header.void
Set the use for this SOAP header.Methods inherited from interface javax.wsdl.extensions.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
Set the part for this SOAP header.- Parameters:
part
- the desired part
-
getPart
String getPart()Get the part for this SOAP header. -
setUse
Set the use for this SOAP header.- Parameters:
use
- the desired use
-
getUse
String getUse()Get the use for this SOAP header. -
setEncodingStyle
Set the encodingStyle for this SOAP header.- Parameters:
encodingStyle
- the desired encodingStyle
-
getEncodingStyle
String getEncodingStyle()Get the encodingStyle 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. -
addSOAP12HeaderFault
Add a SOAP header fault.- Parameters:
soap12HeaderFault
- the SOAP Header fault to be added.
-
getSOAP12HeaderFaults
List getSOAP12HeaderFaults()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.
-
removeSOAP12HeaderFault
Remove a SOAP header fault.- Parameters:
soap12HeaderFault
- the SOAP header fault to be removed.- Returns:
- the SOAP header fault which was removed.
-