javax.wsdl.extensions
Interface ExtensibilityElement

All Known Subinterfaces:
DIMEMessage, HTTPAddress, HTTPBinding, HTTPOperation, HTTPUrlEncoded, HTTPUrlReplacement, MIMEContent, MIMEMimeXml, MIMEMultipartRelated, MIMEPart, SOAPAddress, SOAPBinding, SOAPBody, SOAPFault, SOAPHeader, SOAPHeaderFault, SOAPOperation
All Known Implementing Classes:
UnknownExtensibilityElement

public interface ExtensibilityElement

This interface should be implemented by classes intending to represent extensions.

Component:
WSDL-API interfaces

Method Summary
 QName getElementType()
          Get the type of this extensibility element.
 java.lang.Boolean getRequired()
          Get whether or not the semantics of this extension are required.
 void setElementType(QName elementType)
          Set the type of this extensibility element.
 void setRequired(java.lang.Boolean required)
          Set whether or not the semantics of this extension are required.
 

Method Detail

setElementType

public void setElementType(QName elementType)
Set the type of this extensibility element.

Parameters:
elementType - the type

getElementType

public QName getElementType()
Get the type of this extensibility element.

Returns:
the extensibility element's type

setRequired

public void setRequired(java.lang.Boolean required)
Set whether or not the semantics of this extension are required. Relates to the wsdl:required attribute.


getRequired

public java.lang.Boolean getRequired()
Get whether or not the semantics of this extension are required. Relates to the wsdl:required attribute.