Package javax.wsdl.extensions
Interface ExtensibilityElement
-
- All Known Subinterfaces:
HTTPAddress
,HTTPBinding
,HTTPOperation
,HTTPUrlEncoded
,HTTPUrlReplacement
,MIMEContent
,MIMEMimeXml
,MIMEMultipartRelated
,MIMEPart
,Schema
,SOAP12Address
,SOAP12Binding
,SOAP12Body
,SOAP12Fault
,SOAP12Header
,SOAP12HeaderFault
,SOAP12Operation
,SOAPAddress
,SOAPBinding
,SOAPBody
,SOAPFault
,SOAPHeader
,SOAPHeaderFault
,SOAPOperation
- All Known Implementing Classes:
HTTPAddressImpl
,HTTPBindingImpl
,HTTPOperationImpl
,HTTPUrlEncodedImpl
,HTTPUrlReplacementImpl
,MIMEContentImpl
,MIMEMimeXmlImpl
,MIMEMultipartRelatedImpl
,MIMEPartImpl
,SchemaImpl
,SOAP12AddressImpl
,SOAP12BindingImpl
,SOAP12BodyImpl
,SOAP12FaultImpl
,SOAP12HeaderFaultImpl
,SOAP12HeaderImpl
,SOAP12OperationImpl
,SOAPAddressImpl
,SOAPBindingImpl
,SOAPBodyImpl
,SOAPFaultImpl
,SOAPHeaderFaultImpl
,SOAPHeaderImpl
,SOAPOperationImpl
,UnknownExtensibilityElement
public interface ExtensibilityElement
This interface should be implemented by classes intending to represent extensions.- Author:
- Matthew J. Duftler (duftler@us.ibm.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.xml.namespace.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(javax.xml.namespace.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
void setElementType(javax.xml.namespace.QName elementType)
Set the type of this extensibility element.- Parameters:
elementType
- the type
-
getElementType
javax.xml.namespace.QName getElementType()
Get the type of this extensibility element.- Returns:
- the extensibility element's type
-
setRequired
void setRequired(java.lang.Boolean required)
Set whether or not the semantics of this extension are required. Relates to the wsdl:required attribute.
-
getRequired
java.lang.Boolean getRequired()
Get whether or not the semantics of this extension are required. Relates to the wsdl:required attribute.
-
-