com.ibm.wsdl

Class ImportImpl

public class ImportImpl extends Object implements Import

This class represents an import, and may contain a reference to the imported definition.

Author: Matthew J. Duftler (duftler@us.ibm.com)

Field Summary
protected Definitiondefinition
protected ElementdocEl
protected MapextensionAttributes
protected StringlocationURI
protected StringnamespaceURI
protected ListnativeAttributeNames
static longserialVersionUID
Method Summary
DefinitiongetDefinition()
This property can be used to hang a referenced Definition, and the top-level Definition (i.e. the one with the <import>) will use this Definition when resolving referenced WSDL parts.
ElementgetDocumentationElement()
Get the documentation element.
ObjectgetExtensionAttribute(QName name)
Retrieve an extension attribute from this element.
MapgetExtensionAttributes()
Get the map containing all the extension attributes defined on this element.
StringgetLocationURI()
StringgetNamespaceURI()
ListgetNativeAttributeNames()
Get the list of local attribute names defined for this element in the WSDL specification.
voidsetDefinition(Definition definition)
This property can be used to hang a referenced Definition, and the top-level Definition (i.e. the one with the <import>) will use this Definition when resolving referenced WSDL parts.
voidsetDocumentationElement(Element docEl)
Set the documentation element for this document.
voidsetExtensionAttribute(QName name, Object value)
Set an extension attribute on this element.
voidsetLocationURI(String locationURI)
voidsetNamespaceURI(String namespaceURI)
StringtoString()

Field Detail

definition

protected Definition definition

docEl

protected Element docEl

extensionAttributes

protected Map extensionAttributes

locationURI

protected String locationURI

namespaceURI

protected String namespaceURI

nativeAttributeNames

protected List nativeAttributeNames

serialVersionUID

public static final long serialVersionUID

Method Detail

getDefinition

public Definition getDefinition()
This property can be used to hang a referenced Definition, and the top-level Definition (i.e. the one with the <import>) will use this Definition when resolving referenced WSDL parts. This would need to be made into a generic reference to handle other types of referenced documents.

getDocumentationElement

public 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.

Returns: the documentation element

getExtensionAttribute

public Object getExtensionAttribute(QName name)
Retrieve an extension attribute from this element. If the extension attribute is not defined, null is returned.

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: ImportImpl ImportImpl ExtensionRegistry#registerExtensionAttributeType ExtensionRegistry#queryExtensionAttributeType

getExtensionAttributes

public Map getExtensionAttributes()
Get the map containing all the extension attributes defined on this element. The keys are the qnames of the attributes.

Returns: a map containing all the extension attributes defined on this element

See Also: ImportImpl ImportImpl

getLocationURI

public String getLocationURI()

getNamespaceURI

public String getNamespaceURI()

getNativeAttributeNames

public List getNativeAttributeNames()
Get the list of local attribute names defined for this element in the WSDL specification.

Returns: a List of Strings, one for each local attribute name

setDefinition

public void setDefinition(Definition definition)
This property can be used to hang a referenced Definition, and the top-level Definition (i.e. the one with the <import>) will use this Definition when resolving referenced WSDL parts. This would need to be made into a generic reference to handle other types of referenced documents.

setDocumentationElement

public void setDocumentationElement(Element docEl)
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.

Parameters: docEl the documentation element

setExtensionAttribute

public void setExtensionAttribute(QName name, Object value)
Set an extension attribute on this element. Pass in a null value to remove an extension attribute.

Parameters: name the extension attribute name value the extension attribute value. Can be a String, a QName, a List of Strings, or a List of QNames.

See Also: ImportImpl ImportImpl ExtensionRegistry#registerExtensionAttributeType ExtensionRegistry#queryExtensionAttributeType

setLocationURI

public void setLocationURI(String locationURI)

setNamespaceURI

public void setNamespaceURI(String namespaceURI)

toString

public String toString()
Copyright B) 2003,2005 IBM. All Rights Reserved.