Module com.sun.xml.ws.jaxws
Package com.sun.xml.ws.api.wsdl.parser
Interface WSDLParserExtensionContext
-
public interface WSDLParserExtensionContextProvides contextual information forWSDLParserExtensions.- Author:
- Vivek Pandey, Fabian Ritzmann
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContainergetContainer()Provides theContainerin which this service or client is running.com.sun.xml.ws.api.policy.PolicyResolvergetPolicyResolver()Provides the PolicyResolvercom.sun.xml.ws.api.model.wsdl.editable.EditableWSDLModelgetWSDLModel()Gives theEditableWSDLModel.booleanisClientSide()Returns true if the WSDL parsing is happening on the client side.
-
-
-
Method Detail
-
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 theEditableWSDLModel. The WSDLModel may not be complete untilWSDLParserExtension.finished(WSDLParserExtensionContext)is called.
-
getContainer
@NotNull Container 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
@NotNull com.sun.xml.ws.api.policy.PolicyResolver getPolicyResolver()
Provides the PolicyResolver
-
-