javax.wsdl

Interface PortType

All Superinterfaces:
java.io.Serializable, AttributeExtensible
Known Implementing Classes:
PortTypeImpl

public interface PortType
extends java.io.Serializable, AttributeExtensible

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

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.
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
setQName(QName name)
Set the name of this port type.
void
setUndefined(boolean isUndefined)

Methods inherited from interface javax.wsdl.extensions.AttributeExtensible

getExtensionAttribute, getExtensionAttributes, getNativeAttributeNames, setExtensionAttribute

Method Details

addOperation

public void addOperation(Operation operation)
Add an operation to this port type.
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.
Returns:
the documentation element

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

getQName

public QName getQName()
Get the name of this port type.
Returns:
the port type name

isUndefined

public boolean isUndefined()

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

setQName

public void setQName(QName name)
Set the name of this port type.
Parameters:
name - the desired name

setUndefined

public void setUndefined(boolean isUndefined)

Copyright B) 2003,2005 IBM. All Rights Reserved.