Interface SOAP12Body

All Superinterfaces:
ExtensibilityElement, java.io.Serializable
All Known Implementing Classes:
SOAP12BodyImpl

public interface SOAP12Body extends ExtensibilityElement, java.io.Serializable
Based on javax.wsdl.extensions.SOAPBody.
  • Method Summary

    Modifier and Type
    Method
    Description
    java.lang.String
    Get the encodingStyle for this SOAP body.
    java.lang.String
    Get the namespace URI for this SOAP body.
    java.util.List
    Get the parts for this SOAP body.
    java.lang.String
    Get the use for this SOAP body.
    void
    setEncodingStyle(java.lang.String encodingStyle)
    Set the encodingStyle for this SOAP body.
    void
    setNamespaceURI(java.lang.String namespaceURI)
    Set the namespace URI for this SOAP body.
    void
    setParts(java.util.List parts)
    Set the parts for this SOAP body.
    void
    setUse(java.lang.String use)
    Set the use for this SOAP body.

    Methods inherited from interface javax.wsdl.extensions.ExtensibilityElement

    getElementType, getRequired, setElementType, setRequired
  • Method Details

    • setParts

      void setParts(java.util.List parts)
      Set the parts for this SOAP body.
      Parameters:
      parts - the desired parts
    • getParts

      java.util.List getParts()
      Get the parts for this SOAP body.
    • setUse

      void setUse(java.lang.String use)
      Set the use for this SOAP body.
      Parameters:
      use - the desired use
    • getUse

      java.lang.String getUse()
      Get the use for this SOAP body.
    • setEncodingStyle

      void setEncodingStyle(java.lang.String encodingStyle)
      Set the encodingStyle for this SOAP body.
      Parameters:
      encodingStyle - the desired encodingStyle
    • getEncodingStyle

      java.lang.String getEncodingStyle()
      Get the encodingStyle for this SOAP body.
    • setNamespaceURI

      void setNamespaceURI(java.lang.String namespaceURI)
      Set the namespace URI for this SOAP body.
      Parameters:
      namespaceURI - the desired namespace URI
    • getNamespaceURI

      java.lang.String getNamespaceURI()
      Get the namespace URI for this SOAP body.