Package javax.wsdl.extensions.soap
Interface SOAPHeaderFault
-
- All Superinterfaces:
ExtensibilityElement
,java.io.Serializable
- All Known Implementing Classes:
SOAPHeaderFaultImpl
public interface SOAPHeaderFault 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 java.util.List
getEncodingStyles()
Get the encodingStyles for this SOAP header fault.javax.xml.namespace.QName
getMessage()
Get the message for this SOAP header fault.java.lang.String
getNamespaceURI()
Get the namespace URI for this SOAP header fault.java.lang.String
getPart()
Get the part for this SOAP header fault.java.lang.String
getUse()
Get the use for this SOAP header fault.void
setEncodingStyles(java.util.List encodingStyles)
Set the encodingStyles for this SOAP header fault.void
setMessage(javax.xml.namespace.QName message)
Set the message for this SOAP header fault.void
setNamespaceURI(java.lang.String namespaceURI)
Set the namespace URI for this SOAP header fault.void
setPart(java.lang.String part)
Set the part for this SOAP header fault.void
setUse(java.lang.String use)
Set the use for this SOAP header fault.-
Methods inherited from interface javax.wsdl.extensions.ExtensibilityElement
getElementType, getRequired, setElementType, setRequired
-
-
-
-
Method Detail
-
setMessage
void setMessage(javax.xml.namespace.QName message)
Set the message for this SOAP header fault.- Parameters:
message
- the desired message
-
getMessage
javax.xml.namespace.QName getMessage()
Get the message for this SOAP header fault.
-
setPart
void setPart(java.lang.String part)
Set the part for this SOAP header fault.- Parameters:
part
- the desired part
-
getPart
java.lang.String getPart()
Get the part for this SOAP header fault.
-
setUse
void setUse(java.lang.String use)
Set the use for this SOAP header fault.- Parameters:
use
- the desired use
-
getUse
java.lang.String getUse()
Get the use for this SOAP header fault.
-
setEncodingStyles
void setEncodingStyles(java.util.List encodingStyles)
Set the encodingStyles for this SOAP header fault.- Parameters:
encodingStyles
- the desired encodingStyles
-
getEncodingStyles
java.util.List getEncodingStyles()
Get the encodingStyles for this SOAP header fault.
-
setNamespaceURI
void setNamespaceURI(java.lang.String namespaceURI)
Set the namespace URI for this SOAP header fault.- Parameters:
namespaceURI
- the desired namespace URI
-
getNamespaceURI
java.lang.String getNamespaceURI()
Get the namespace URI for this SOAP header fault.
-
-