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 to PortInfo.
Author:
Kohsuke Kawaguchi
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the same information as PortInfo.getBindingID() but in a strongly-typed fashion
    Gets the endpoint address of this port.
    Returns WSService object that owns this port.
    Deprecated.
    Do not use this method as the PolicyMap API is not final yet and might change in next few months.
    Gets the WSDLPort object that represents this port, if WSService is configured with WSDL.

    Methods inherited from interface jakarta.xml.ws.handler.PortInfo

    getBindingID, getPortName, getServiceName
  • Method Details

    • getOwner

      @NotNull WSService getOwner()
      Returns WSService object that owns this port.
    • getBindingId

      @NotNull BindingID getBindingId()
      Returns the same information as PortInfo.getBindingID() but in a strongly-typed fashion
    • getEndpointAddress

      @NotNull EndpointAddress getEndpointAddress()
      Gets the endpoint address of this port.
    • getPort

      @Nullable WSDLPort getPort()
      Gets the WSDLPort object that represents this port, if WSService is configured with WSDL. Otherwise null.
    • getPolicyMap

      @Deprecated 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