Class AbstractWSDLElement
java.lang.Object
com.ibm.wsdl.AbstractWSDLElement
- All Implemented Interfaces:
Serializable, AttributeExtensible, ElementExtensible, WSDLElement
- Direct Known Subclasses:
BindingFaultImpl, BindingImpl, BindingInputImpl, BindingOperationImpl, BindingOutputImpl, DefinitionImpl, FaultImpl, ImportImpl, InputImpl, MessageImpl, OperationImpl, OutputImpl, PartImpl, PortImpl, PortTypeImpl, ServiceImpl, TypesImpl
Abstract super class for all WSDL Elements, providing some basic
common functionality.
- See Also:
-
Field Summary
FieldsFields inherited from interface AttributeExtensible
LIST_OF_QNAMES_TYPE, LIST_OF_STRINGS_TYPE, NO_DECLARED_TYPE, QNAME_TYPE, STRING_TYPE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddExtensibilityElement(ExtensibilityElement extElement) Add an extensibility element.Get the documentation element.Get all the extensibility elements defined here.getExtensionAttribute(QName name) Retrieve an extension attribute from this element.Get the map containing all the extension attributes defined on this element.removeExtensibilityElement(ExtensibilityElement extElement) Remove an extensibility element.voidsetDocumentationElement(Element docEl) Set the documentation element for this document.voidsetExtensionAttribute(QName name, Object value) Set an extension attribute on this element.toString()Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface AttributeExtensible
getNativeAttributeNames
-
Field Details
-
docEl
-
extElements
-
extensionAttributes
-
-
Constructor Details
-
AbstractWSDLElement
public AbstractWSDLElement()
-
-
Method Details
-
setDocumentationElement
Set the documentation element for this document. This dependency on org.w3c.dom.Element should eventually be removed when a more appropriate way of representing this information is employed.- Specified by:
setDocumentationElementin interfaceWSDLElement- Parameters:
docEl- the documentation element
-
getDocumentationElement
Get the documentation element. This dependency on org.w3c.dom.Element should eventually be removed when a more appropriate way of representing this information is employed.- Specified by:
getDocumentationElementin interfaceWSDLElement- Returns:
- the documentation element
-
addExtensibilityElement
Add an extensibility element.- Specified by:
addExtensibilityElementin interfaceElementExtensible- Parameters:
extElement- the extensibility element to be added
-
removeExtensibilityElement
Remove an extensibility element.- Specified by:
removeExtensibilityElementin interfaceElementExtensible- Parameters:
extElement- the extensibility element to be removed.- Returns:
- the extensibility element which was removed.
-
getExtensibilityElements
Get all the extensibility elements defined here.- Specified by:
getExtensibilityElementsin interfaceElementExtensible
-
setExtensionAttribute
Set an extension attribute on this element. Pass in a null value to remove an extension attribute.- Specified by:
setExtensionAttributein interfaceAttributeExtensible- Parameters:
name- the extension attribute namevalue- the extension attribute value. Can be a String, a QName, a List of Strings, or a List of QNames.- See Also:
-
getExtensionAttribute
Retrieve an extension attribute from this element. If the extension attribute is not defined, null is returned.- Specified by:
getExtensionAttributein interfaceAttributeExtensible- Parameters:
name- the extension attribute name- Returns:
- the value of the extension attribute, or null if it is not defined. Can be a String, a QName, a List of Strings, or a List of QNames.
- See Also:
-
getExtensionAttributes
Get the map containing all the extension attributes defined on this element. The keys are the qnames of the attributes.- Specified by:
getExtensionAttributesin interfaceAttributeExtensible- Returns:
- a map containing all the extension attributes defined on this element
- See Also:
-
toString
-