Package com.ibm.wsdl.extensions.soap
Class SOAPBodyImpl
- java.lang.Object
-
- com.ibm.wsdl.extensions.soap.SOAPBodyImpl
-
- All Implemented Interfaces:
Serializable,ExtensibilityElement,SOAPBody
public class SOAPBodyImpl extends Object implements SOAPBody
- Author:
- Matthew J. Duftler (duftler@us.ibm.com)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected QNameelementTypeprotected ListencodingStylesprotected StringnamespaceURIprotected Listpartsprotected Booleanrequiredstatic longserialVersionUIDprotected Stringuse
-
Constructor Summary
Constructors Constructor Description SOAPBodyImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QNamegetElementType()Get the type of this extensibility element.ListgetEncodingStyles()Get the encodingStyles for this SOAP body.StringgetNamespaceURI()Get the namespace URI for this SOAP body.ListgetParts()Get the parts for this SOAP body.BooleangetRequired()Get whether or not the semantics of this extension are required.StringgetUse()Get the use for this SOAP body.voidsetElementType(QName elementType)Set the type of this extensibility element.voidsetEncodingStyles(List encodingStyles)Set the encodingStyles for this SOAP body.voidsetNamespaceURI(String namespaceURI)Set the namespace URI for this SOAP body.voidsetParts(List parts)Set the parts for this SOAP body.voidsetRequired(Boolean required)Set whether or not the semantics of this extension are required.voidsetUse(String use)Set the use for this SOAP body.StringtoString()
-
-
-
Field Detail
-
elementType
protected QName elementType
-
required
protected Boolean required
-
parts
protected List parts
-
use
protected String use
-
encodingStyles
protected List encodingStyles
-
namespaceURI
protected String namespaceURI
-
serialVersionUID
public static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Method Detail
-
setElementType
public void setElementType(QName elementType)
Set the type of this extensibility element.- Specified by:
setElementTypein interfaceExtensibilityElement- Parameters:
elementType- the type
-
getElementType
public QName getElementType()
Get the type of this extensibility element.- Specified by:
getElementTypein interfaceExtensibilityElement- Returns:
- the extensibility element's type
-
setRequired
public void setRequired(Boolean required)
Set whether or not the semantics of this extension are required. Relates to the wsdl:required attribute.- Specified by:
setRequiredin interfaceExtensibilityElement
-
getRequired
public Boolean getRequired()
Get whether or not the semantics of this extension are required. Relates to the wsdl:required attribute.- Specified by:
getRequiredin interfaceExtensibilityElement
-
setParts
public void setParts(List parts)
Set the parts for this SOAP body.
-
getParts
public List getParts()
Get the parts for this SOAP body.
-
setUse
public void setUse(String use)
Set the use for this SOAP body.
-
getUse
public String getUse()
Get the use for this SOAP body.
-
setEncodingStyles
public void setEncodingStyles(List encodingStyles)
Set the encodingStyles for this SOAP body.- Specified by:
setEncodingStylesin interfaceSOAPBody- Parameters:
encodingStyles- the desired encodingStyles
-
getEncodingStyles
public List getEncodingStyles()
Get the encodingStyles for this SOAP body.- Specified by:
getEncodingStylesin interfaceSOAPBody
-
setNamespaceURI
public void setNamespaceURI(String namespaceURI)
Set the namespace URI for this SOAP body.- Specified by:
setNamespaceURIin interfaceSOAPBody- Parameters:
namespaceURI- the desired namespace URI
-
getNamespaceURI
public String getNamespaceURI()
Get the namespace URI for this SOAP body.- Specified by:
getNamespaceURIin interfaceSOAPBody
-
-