WSDLFactoryImpl
public abstract class WSDLFactory
extends java.lang.Object
Constructor | Description |
---|---|
WSDLFactory() |
Modifier and Type | Method | Description |
---|---|---|
abstract Definition |
newDefinition() |
Create a new instance of a Definition.
|
static WSDLFactory |
newInstance() |
Get a new instance of a WSDLFactory.
|
static WSDLFactory |
newInstance(java.lang.String factoryImplName) |
Get a new instance of a WSDLFactory.
|
static WSDLFactory |
newInstance(java.lang.String factoryImplName,
java.lang.ClassLoader classLoader) |
Get a new instance of a WSDLFactory.
|
abstract ExtensionRegistry |
newPopulatedExtensionRegistry() |
Create a new instance of an ExtensionRegistry with pre-registered
serializers/deserializers for the SOAP, HTTP and MIME
extensions.
|
abstract WSDLReader |
newWSDLReader() |
Create a new instance of a WSDLReader.
|
abstract WSDLWriter |
newWSDLWriter() |
Create a new instance of a WSDLWriter.
|
public static WSDLFactory newInstance() throws WSDLException
The steps in order are:
Once an instance of a WSDLFactory is obtained, invoke newDefinition(), newWSDLReader(), or newWSDLWriter(), to create the desired instances.
WSDLException
public static WSDLFactory newInstance(java.lang.String factoryImplName) throws WSDLException
factoryImplName
- the fully-qualified class name of the
class which provides a concrete implementation of the abstract
class WSDLFactory.WSDLException
public static WSDLFactory newInstance(java.lang.String factoryImplName, java.lang.ClassLoader classLoader) throws WSDLException
factoryImplName
- the fully-qualified class name of the
class which provides a concrete implementation of the abstract
class WSDLFactory.classLoader
- the ClassLoader to use to load the WSDLFactory
implementation.WSDLException
public abstract Definition newDefinition()
public abstract WSDLReader newWSDLReader()
public abstract WSDLWriter newWSDLWriter()
public abstract ExtensionRegistry newPopulatedExtensionRegistry()
Copyright ? 2003, 2013 IBM. All Rights Reserved.