Package org.glassfish.webservices
Class PortInfoImpl
- java.lang.Object
-
- org.glassfish.webservices.PortInfoImpl
-
- All Implemented Interfaces:
jakarta.xml.ws.handler.PortInfo
public class PortInfoImpl extends Object implements jakarta.xml.ws.handler.PortInfo
Implementation of the PortInfo interface. This is just a simple class used to hold the info necessary to uniquely identify a port, including the port name, service name, and binding ID. This class is only used on the client side.
-
-
Constructor Summary
Constructors Constructor Description PortInfoImpl(com.sun.xml.ws.api.BindingID bindingId, QName portName, QName serviceName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)StringgetBindingID()QNamegetPortName()QNamegetServiceName()inthashCode()Needed by JAXWS so PortInfoImpl can be used as a key in a map..
-
-
-
Method Detail
-
getBindingID
public String getBindingID()
- Specified by:
getBindingIDin interfacejakarta.xml.ws.handler.PortInfo
-
getPortName
public QName getPortName()
- Specified by:
getPortNamein interfacejakarta.xml.ws.handler.PortInfo
-
getServiceName
public QName getServiceName()
- Specified by:
getServiceNamein interfacejakarta.xml.ws.handler.PortInfo
-
-