PortInfo
HandlerResolver
This interface is never implemented by an application, only by a JAX-WS implementation. @since JAX-WS 2.0
107108109110111112113114115116117
} catch (TransformerConfigurationException e) { throw new ConfigurationException(e); } PortInfo portInfo = null; BindingType bindingType = (BindingType) _class.getAnnotation(BindingType.class); WebServiceProvider provider =
115116117118119120121122123124125126127128
* @return True if they match, and false if they do not or * if the object passed in is not a PortInfo. */ public boolean equals(Object obj) { if (obj instanceof PortInfo) { PortInfo info = (PortInfo) obj; if (bindingId.toString().equals(info.getBindingID()) && portName.equals(info.getPortName()) && serviceName.equals(info.getServiceName())) { return true; } } return false; }