Methods Summary |
---|
public java.lang.String | getAddress()Retrieve the address for this port.
return address;
|
public java.lang.String | getPortLocalPart()Utility method for obtaining port local name. This
method is equivalent to getPortName().getLocalPart().
return portName.getLocalPart();
|
public javax.xml.namespace.QName | getPortName()Retrieve the qname for this port.
return portName;
|
public java.lang.String | getPortNamespaceURI()Utility method for obtaining port namespace. This
method is equivalent to getPortName().getNamespaceURI().
return portName.getNamespaceURI();
|
public java.lang.String | getServiceLocalPart()Utility method for obtaining service local name. This
method is equivalent to getServiceName().getLocalPart().
return serviceName.getLocalPart();
|
public javax.xml.namespace.QName | getServiceName()Retrieve the qname for the service that
contains this port.
return serviceName;
|