| com.sun.jbi.wsdl2.WsdlFactory
All known Subclasses: com.sun.jbi.wsdl2.impl.WsdlFactory,
WsdlFactory | public interface WsdlFactory (Code) | | This interface defines a factory API that enables applications to obtain
instances of WSDL 2.0 API objects needed to begin using the API. The objects
that can be created by this factory are:
- Description. An empty WSDL definitions component. This is useful for
programatic creation of WSDL components.
- WsdlReader. An object that can be used to read existing WSDL
documents from a variety of sources, producing a Description component.
- WsdlWriter. An object that can used to write a Description component
to a variety of destinations. This is useful for persisting Description
that were programatically created.
author: Sun Microsystems, Inc. |
newDefinitions | Definitions newDefinitions(String targetNamespace)(Code) | | Create a new instance of a WSDL Definitions . This is useful for
programmatic creation of service definitions. This method is for
backward compatibility.
Parameters: targetNamespace - Target namespace for the new component. A new, empty WSDL Definitions component for the given target namespace. |
newDescription | Description newDescription(String targetNamespace)(Code) | | Create a new instance of a WSDL Description component. This is useful for
programmatic creation of service descriptions.
Parameters: targetNamespace - Target namespace for the new component. A new, empty WSDL Description component for the given target namespace. |
newWsdlReader | WsdlReader newWsdlReader()(Code) | | Create a new instance of a WSDL reader. A reader is useful for creating WSDL
Description components from existing XML sources (that is, it can deserialize
the XML presentation of WSDL).
A new instance of a WSDL reader. |
newWsdlWriter | WsdlWriter newWsdlWriter()(Code) | | Create a new instance of a WSDL writer. A writer is useful for converting WSDL
Description components in memory into a proper XML serialization.
A new instance of a WSDL writer. |
|
|