Package com.sun.xml.ws.api.wsdl.parser
Interface WSDLParserExtensionContext
public interface WSDLParserExtensionContext
Provides contextual information for
WSDLParserExtensions.- Author:
- Vivek Pandey, Fabian Ritzmann
-
Method Summary
Modifier and TypeMethodDescriptionProvides theContainerin which this service or client is running.Provides the PolicyResolverGives theEditableWSDLModel.booleanReturns 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
EditableWSDLModel getWSDLModel()Gives theEditableWSDLModel. The WSDLModel may not be complete untilWSDLParserExtension.finished(WSDLParserExtensionContext)is called. -
getContainer
Provides theContainerin which this service or client is running. May return null.- Returns:
- The container in which this service or client is running.
-
getPolicyResolver
Provides the PolicyResolver
-