- java.lang.Object
-
- com.sun.xml.ws.mex.client.PortInfo
-
public class PortInfo extends 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
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAddress()Retrieve the address for this port.StringgetPortLocalPart()Utility method for obtaining port local name.QNamegetPortName()Retrieve the qname for this port.StringgetPortNamespaceURI()Utility method for obtaining port namespace.StringgetServiceLocalPart()Utility method for obtaining service local name.QNamegetServiceName()Retrieve the qname for the service that contains this port.
-
-
-
Method Detail
-
getServiceName
public QName getServiceName()
Retrieve the qname for the service that contains this port.
-
getPortName
public QName getPortName()
Retrieve the qname for this port.
-
getAddress
public String getAddress()
Retrieve the address for this port.
-
getPortLocalPart
public String getPortLocalPart()
Utility method for obtaining port local name. This method is equivalent to getPortName().getLocalPart().
-
getPortNamespaceURI
public String getPortNamespaceURI()
Utility method for obtaining port namespace. This method is equivalent to getPortName().getNamespaceURI().
-
getServiceLocalPart
public String getServiceLocalPart()
Utility method for obtaining service local name. This method is equivalent to getServiceName().getLocalPart().
-
-