Package javax.wsdl.extensions.soap
Interface SOAPFault
-
- All Superinterfaces:
ExtensibilityElement,java.io.Serializable
- All Known Implementing Classes:
SOAPFaultImpl
public interface SOAPFault 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.ListgetEncodingStyles()Get the encodingStyles for this SOAP fault.java.lang.StringgetName()Get the name for this SOAP fault.java.lang.StringgetNamespaceURI()Get the namespace URI for this SOAP fault.java.lang.StringgetUse()Get the use for this SOAP fault.voidsetEncodingStyles(java.util.List encodingStyles)Set the encodingStyles for this SOAP fault.voidsetName(java.lang.String name)Set the name for this SOAP fault.voidsetNamespaceURI(java.lang.String namespaceURI)Set the namespace URI for this SOAP fault.voidsetUse(java.lang.String use)Set the use for this SOAP fault.-
Methods inherited from interface javax.wsdl.extensions.ExtensibilityElement
getElementType, getRequired, setElementType, setRequired
-
-
-
-
Method Detail
-
setName
void setName(java.lang.String name)
Set the name for this SOAP fault.- Parameters:
name- the desired name
-
getName
java.lang.String getName()
Get the name for this SOAP fault.
-
setUse
void setUse(java.lang.String use)
Set the use for this SOAP fault.- Parameters:
use- the desired use
-
getUse
java.lang.String getUse()
Get the use for this SOAP fault.
-
setEncodingStyles
void setEncodingStyles(java.util.List encodingStyles)
Set the encodingStyles for this SOAP fault.- Parameters:
encodingStyles- the desired encodingStyles
-
getEncodingStyles
java.util.List getEncodingStyles()
Get the encodingStyles for this SOAP fault.
-
setNamespaceURI
void setNamespaceURI(java.lang.String namespaceURI)
Set the namespace URI for this SOAP fault.- Parameters:
namespaceURI- the desired namespace URI
-
getNamespaceURI
java.lang.String getNamespaceURI()
Get the namespace URI for this SOAP fault.
-
-