Package javax.wsdl.extensions.soap12
Interface SOAP12Fault
-
- All Superinterfaces:
ExtensibilityElement,Serializable
- All Known Implementing Classes:
SOAP12FaultImpl
public interface SOAP12Fault extends ExtensibilityElement, Serializable
Based on javax.wsdl.extensions.SOAPFault.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetEncodingStyle()Get the encodingStyle for this SOAP fault.StringgetName()Get the name for this SOAP fault.StringgetNamespaceURI()Get the namespace URI for this SOAP fault.StringgetUse()Get the use for this SOAP fault.voidsetEncodingStyle(String encodingStyle)Set the encodingStyle for this SOAP fault.voidsetName(String name)Set the name for this SOAP fault.voidsetNamespaceURI(String namespaceURI)Set the namespace URI for this SOAP fault.voidsetUse(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(String name)
Set the name for this SOAP fault.- Parameters:
name- the desired name
-
getName
String getName()
Get the name for this SOAP fault.
-
setUse
void setUse(String use)
Set the use for this SOAP fault.- Parameters:
use- the desired use
-
getUse
String getUse()
Get the use for this SOAP fault.
-
setEncodingStyle
void setEncodingStyle(String encodingStyle)
Set the encodingStyle for this SOAP fault.- Parameters:
encodingStyle- the desired encodingStyle
-
getEncodingStyle
String getEncodingStyle()
Get the encodingStyle for this SOAP fault.
-
setNamespaceURI
void setNamespaceURI(String namespaceURI)
Set the namespace URI for this SOAP fault.- Parameters:
namespaceURI- the desired namespace URI
-
getNamespaceURI
String getNamespaceURI()
Get the namespace URI for this SOAP fault.
-
-