com.ibm.wsdl

Class PortTypeImpl

Implemented Interfaces:
AttributeExtensible, PortType, java.io.Serializable

public class PortTypeImpl
extends java.lang.Object
implements PortType

This class represents a port type. It contains information about operations associated with this port type.
Authors:
Paul Fremantle
Nirmal Mukhi
Matthew J. Duftler

Field Summary

protected Element
docEl
protected Map
extensionAttributes
protected boolean
isUndefined
protected QName
name
protected List
nativeAttributeNames
protected List
operations
static long
serialVersionUID

Fields inherited from interface javax.wsdl.extensions.AttributeExtensible

LIST_OF_QNAMES_TYPE, LIST_OF_STRINGS_TYPE, NO_DECLARED_TYPE, QNAME_TYPE, STRING_TYPE

Method Summary

void
addOperation(Operation operation)
Add an operation to this port type.
Element
getDocumentationElement()
Get the documentation element.
Object
getExtensionAttribute(QName name)
Retrieve an extension attribute from this element.
Map
getExtensionAttributes()
Get the map containing all the extension attributes defined on this element.
List
getNativeAttributeNames()
Get the list of local attribute names defined for this element in the WSDL specification.
Operation
getOperation(String name, String inputName, String outputName)
Get the specified operation.
List
getOperations()
Get all the operations defined here.
QName
getQName()
Get the name of this port type.
boolean
isUndefined()
void
setDocumentationElement(Element docEl)
Set the documentation element for this document.
void
setExtensionAttribute(QName name, Object value)
Set an extension attribute on this element.
void
setQName(QName name)
Set the name of this port type.
void
setUndefined(boolean isUndefined)
String
toString()

Field Details

docEl

protected Element docEl

extensionAttributes

protected Map extensionAttributes

isUndefined

protected boolean isUndefined

name

protected QName name

nativeAttributeNames

protected List nativeAttributeNames

operations

protected List operations

serialVersionUID

public static final long serialVersionUID
Field Value:
1L

Method Details

addOperation

public void addOperation(Operation operation)
Add an operation to this port type.
Specified by:
addOperation in interface PortType
Parameters:
operation - the operation to be added

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.
Specified by:
getDocumentationElement in interface PortType
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.
Specified by:
getExtensionAttribute in interface AttributeExtensible
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:
setExtensionAttribute(QName,Object), getExtensionAttributes(), 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.
Specified by:
getExtensionAttributes in interface AttributeExtensible
Returns:
a map containing all the extension attributes defined on this element

getNativeAttributeNames

public List getNativeAttributeNames()
Get the list of local attribute names defined for this element in the WSDL specification.
Specified by:
getNativeAttributeNames in interface AttributeExtensible
Returns:
a List of Strings, one for each local attribute name

getOperation

public Operation getOperation(String name,
                              String inputName,
                              String outputName)
Get the specified operation. Note that operation names can be overloaded within a PortType. In case of overloading, the names of the input and output messages can be used to further refine the search.
Specified by:
getOperation in interface PortType
Parameters:
name - the name of the desired operation.
inputName - the name of the input message; if this is null it will be ignored.
outputName - the name of the output message; if this is null it will be ignored.
Returns:
the corresponding operation, or null if there wasn't any matching operation

getOperations

public List getOperations()
Get all the operations defined here.
Specified by:
getOperations in interface PortType

getQName

public QName getQName()
Get the name of this port type.
Specified by:
getQName in interface PortType
Returns:
the port type name

isUndefined

public boolean isUndefined()
Specified by:
isUndefined in interface PortType

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.
Specified by:
setDocumentationElement in interface PortType
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.
Specified by:
setExtensionAttribute in interface AttributeExtensible
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:
getExtensionAttribute(QName), getExtensionAttributes(), ExtensionRegistry.registerExtensionAttributeType, ExtensionRegistry.queryExtensionAttributeType

setQName

public void setQName(QName name)
Set the name of this port type.
Specified by:
setQName in interface PortType
Parameters:
name - the desired name

setUndefined

public void setUndefined(boolean isUndefined)
Specified by:
setUndefined in interface PortType

toString

public String toString()