public interface WSDLManager
| Modifier and Type | Method and Description |
|---|---|
void |
addDefinition(Object key,
javax.wsdl.Definition wsdl)
Adds a definition into the cache for lookup later
|
javax.wsdl.Definition |
getDefinition(Element element)
Get the WSDL definition for the given Element.
|
javax.wsdl.Definition |
getDefinition(String url)
Get the WSDL definition for the given URL.
|
javax.wsdl.Definition |
getDefinition(URL url)
Get the WSDL definition for the given URL.
|
Map<Object,javax.wsdl.Definition> |
getDefinitions() |
javax.wsdl.extensions.ExtensionRegistry |
getExtensionRegistry()
Returns the ExtensionRegistry that the WSDLManager
uses when reading WSDL files.
|
ServiceSchemaInfo |
getSchemasForDefinition(javax.wsdl.Definition wsdl)
This object will cache the schemas for a WSDL.
|
javax.wsdl.factory.WSDLFactory |
getWSDLFactory()
Returns the WSDLFactory that is used to read/write WSDL definitions
|
void |
putSchemasForDefinition(javax.wsdl.Definition wsdl,
ServiceSchemaInfo schemas)
Register a collection of schemas for a WSDL.
|
void |
removeDefinition(javax.wsdl.Definition wsdl)
If the definition is cached, remove it from the cache
|
javax.wsdl.extensions.ExtensionRegistry getExtensionRegistry()
javax.wsdl.factory.WSDLFactory getWSDLFactory()
javax.wsdl.Definition getDefinition(URL url) throws javax.wsdl.WSDLException
url - - the location of the WSDL to loadjavax.wsdl.WSDLExceptionjavax.wsdl.Definition getDefinition(String url) throws javax.wsdl.WSDLException
url - - the location of the WSDL to loadjavax.wsdl.WSDLExceptionjavax.wsdl.Definition getDefinition(Element element) throws javax.wsdl.WSDLException
element - - the root element of the wsdljavax.wsdl.WSDLExceptionvoid addDefinition(Object key, javax.wsdl.Definition wsdl)
key - wsdl - Map<Object,javax.wsdl.Definition> getDefinitions()
ServiceSchemaInfo getSchemasForDefinition(javax.wsdl.Definition wsdl)
wsdl - void putSchemasForDefinition(javax.wsdl.Definition wsdl,
ServiceSchemaInfo schemas)
wsdl - schemas - void removeDefinition(javax.wsdl.Definition wsdl)
wsdl - Apache CXF