Package com.sun.xml.ws.api.client
Interface WSPortInfo
-
- All Superinterfaces:
jakarta.xml.ws.handler.PortInfo
- All Known Implementing Classes:
PortInfo
,SEIPortInfo
public interface WSPortInfo extends jakarta.xml.ws.handler.PortInfo
JAX-WS RI's extension toPortInfo
.- Author:
- Kohsuke Kawaguchi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description BindingID
getBindingId()
Returns the same information asPortInfo.getBindingID()
but in a strongly-typed fashionEndpointAddress
getEndpointAddress()
Gets the endpoint address of this port.WSService
getOwner()
ReturnsWSService
object that owns this port.PolicyMap
getPolicyMap()
Deprecated.Do not use this method as the PolicyMap API is not final yet and might change in next few months.WSDLPort
getPort()
-
-
-
Method Detail
-
getBindingId
@NotNull BindingID getBindingId()
Returns the same information asPortInfo.getBindingID()
but in a strongly-typed fashion
-
getEndpointAddress
@NotNull EndpointAddress getEndpointAddress()
Gets the endpoint address of this port.
-
getPort
@Nullable WSDLPort getPort()
-
getPolicyMap
PolicyMap getPolicyMap()
Deprecated.Do not use this method as the PolicyMap API is not final yet and might change in next few months.Gives the PolicMap that captures the Policy for the PortInfo- Returns:
- PolicyMap
-
-