com.sun.xml.ws.wsdl.parser
Class WSDLParserExtensionContextImpl

java.lang.Object
  extended by com.sun.xml.ws.wsdl.parser.WSDLParserExtensionContextImpl
All Implemented Interfaces:
WSDLParserExtensionContext

final class WSDLParserExtensionContextImpl
extends Object
implements WSDLParserExtensionContext

Provides implementation of WSDLParserExtensionContext


Constructor Summary
protected WSDLParserExtensionContextImpl(WSDLModel model, boolean isClientSide, Container container)
          Construct WSDLParserExtensionContextImpl with information that whether its on client side or server side.
 
Method Summary
 Container getContainer()
          Provides the Container in which this service or client is running.
 WSDLModel getWSDLModel()
          Gives the WSDLModel.
 boolean isClientSide()
          Returns true if the WSDL parsing is happening on the client side.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WSDLParserExtensionContextImpl

protected WSDLParserExtensionContextImpl(WSDLModel model,
                                         boolean isClientSide,
                                         Container container)
Construct WSDLParserExtensionContextImpl with information that whether its on client side or server side.

Method Detail

isClientSide

public boolean isClientSide()
Description copied from interface: WSDLParserExtensionContext
Returns true if the WSDL parsing is happening on the client side. Returns false means its started on the server side.

Specified by:
isClientSide in interface WSDLParserExtensionContext

getWSDLModel

public WSDLModel getWSDLModel()
Description copied from interface: WSDLParserExtensionContext
Gives the WSDLModel. The WSDLModel may not be complete until WSDLParserExtension.finished(WSDLParserExtensionContext) is called.

Specified by:
getWSDLModel in interface WSDLParserExtensionContext

getContainer

public Container getContainer()
Description copied from interface: WSDLParserExtensionContext
Provides the Container in which this service or client is running. May return null.

Specified by:
getContainer in interface WSDLParserExtensionContext
Returns:
The container in which this service or client is running.