Interface WSDLParserExtensionContext


public interface WSDLParserExtensionContext
Provides contextual information for WSDLParserExtensions.
Author:
Vivek Pandey, Fabian Ritzmann
  • Method Summary

    Modifier and Type
    Method
    Description
    Provides the Container in which this service or client is running.
    Provides the PolicyResolver
    com.sun.xml.ws.api.model.wsdl.editable.EditableWSDLModel
    Gives the EditableWSDLModel.
    boolean
    Returns true if the WSDL parsing is happening on the client side.
  • Method Details

    • isClientSide

      boolean isClientSide()
      Returns true if the WSDL parsing is happening on the client side. Returns false means its started on the server side.
    • getWSDLModel

      com.sun.xml.ws.api.model.wsdl.editable.EditableWSDLModel getWSDLModel()
      Gives the EditableWSDLModel. The WSDLModel may not be complete until WSDLParserExtension.finished(WSDLParserExtensionContext) is called.
    • getContainer

      @NotNull Container getContainer()
      Provides the Container in which this service or client is running. May return null.
      Returns:
      The container in which this service or client is running.
    • getPolicyResolver

      @NotNull PolicyResolver getPolicyResolver()
      Provides the PolicyResolver