javax.wsdl
Interface Port

All Superinterfaces:
ElementExtensible, java.io.Serializable
All Known Implementing Classes:
PortImpl

public interface Port
extends java.io.Serializable, ElementExtensible

This interface represents a port, an endpoint for the functionality described by a particular port type.

Author:
Paul Fremantle, Nirmal Mukhi, Matthew J. Duftler

Method Summary
 Binding getBinding()
          Get the binding this port refers to.
 org.w3c.dom.Element getDocumentationElement()
          Get the documentation element.
 java.lang.String getName()
          Get the name of this port.
 void setBinding(Binding binding)
          Set the binding this port should refer to.
 void setDocumentationElement(org.w3c.dom.Element docEl)
          Set the documentation element for this document.
 void setName(java.lang.String name)
          Set the name of this port.
 
Methods inherited from interface javax.wsdl.extensions.ElementExtensible
addExtensibilityElement, getExtensibilityElements
 

Method Detail

setName

void setName(java.lang.String name)
Set the name of this port.

Parameters:
name - the desired name

getName

java.lang.String getName()
Get the name of this port.

Returns:
the port name

setBinding

void setBinding(Binding binding)
Set the binding this port should refer to.

Parameters:
binding - the desired binding

getBinding

Binding getBinding()
Get the binding this port refers to.

Returns:
the binding associated with this port

setDocumentationElement

void setDocumentationElement(org.w3c.dom.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

getDocumentationElement

org.w3c.dom.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


Copyright ? 2003,2005 IBM. All Rights Reserved.