com.sun.xml.ws.mex.client
Class PortInfo

java.lang.Object
  extended by com.sun.xml.ws.mex.client.PortInfo

public class PortInfo
extends java.lang.Object

Class to hold information about a port, such as the port name, address, and name of the containing service.

See Also:
MetadataClient

Method Summary
 java.lang.String getAddress()
          Retrieve the address for this port.
 java.lang.String getPortLocalPart()
          Utility method for obtaining port local name.
 javax.xml.namespace.QName getPortName()
          Retrieve the qname for this port.
 java.lang.String getPortNamespaceURI()
          Utility method for obtaining port namespace.
 java.lang.String getServiceLocalPart()
          Utility method for obtaining service local name.
 javax.xml.namespace.QName getServiceName()
          Retrieve the qname for the service that contains this port.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getServiceName

public javax.xml.namespace.QName getServiceName()
Retrieve the qname for the service that contains this port.


getPortName

public javax.xml.namespace.QName getPortName()
Retrieve the qname for this port.


getAddress

public java.lang.String getAddress()
Retrieve the address for this port.


getPortLocalPart

public java.lang.String getPortLocalPart()
Utility method for obtaining port local name. This method is equivalent to getPortName().getLocalPart().


getPortNamespaceURI

public java.lang.String getPortNamespaceURI()
Utility method for obtaining port namespace. This method is equivalent to getPortName().getNamespaceURI().


getServiceLocalPart

public java.lang.String getServiceLocalPart()
Utility method for obtaining service local name. This method is equivalent to getServiceName().getLocalPart().