|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.ibm.wsdl.xml.WSDLReaderImpl
public class WSDLReaderImpl
This class describes a collection of methods that enable conversion of a WSDL document (in XML, following the WSDL schema described in the WSDL specification) into a WSDL model.
Field Summary | |
---|---|
protected java.util.Map |
allSchemas
|
protected ExtensionRegistry |
extReg
|
protected WSDLFactory |
factory
|
protected java.lang.String |
factoryImplName
|
protected boolean |
importDocuments
|
protected WSDLLocator |
loc
|
protected boolean |
verbose
|
Constructor Summary | |
---|---|
WSDLReaderImpl()
|
Method Summary | |
---|---|
ExtensionRegistry |
getExtensionRegistry()
Get the extension registry, if one was set. |
java.lang.String |
getFactoryImplName()
Get the factoryImplName, if one was set. |
boolean |
getFeature(java.lang.String name)
Gets the value of the specified feature. |
protected WSDLFactory |
getWSDLFactory()
Get the WSDLFactory object cached in the reader, or use lazy instantiation if it is not cached yet. |
protected Binding |
parseBinding(org.w3c.dom.Element bindingEl,
Definition def)
|
protected BindingFault |
parseBindingFault(org.w3c.dom.Element bindingFaultEl,
Definition def)
|
protected BindingInput |
parseBindingInput(org.w3c.dom.Element bindingInputEl,
Definition def)
|
protected BindingOperation |
parseBindingOperation(org.w3c.dom.Element bindingOperationEl,
PortType portType,
Definition def)
|
protected BindingOutput |
parseBindingOutput(org.w3c.dom.Element bindingOutputEl,
Definition def)
|
protected Definition |
parseDefinitions(java.lang.String documentBaseURI,
org.w3c.dom.Element defEl,
java.util.Map importedDefs)
|
protected java.lang.Object |
parseExtensibilityAttribute(org.w3c.dom.Element el,
int attrType,
java.lang.String attrValue,
Definition def)
|
protected void |
parseExtensibilityAttributes(org.w3c.dom.Element el,
java.lang.Class parentType,
AttributeExtensible attrExt,
Definition def)
|
protected ExtensibilityElement |
parseExtensibilityElement(java.lang.Class parentType,
org.w3c.dom.Element el,
Definition def)
|
protected Fault |
parseFault(org.w3c.dom.Element faultEl,
Definition def)
|
protected Import |
parseImport(org.w3c.dom.Element importEl,
Definition def,
java.util.Map importedDefs)
|
protected Input |
parseInput(org.w3c.dom.Element inputEl,
Definition def)
|
protected Message |
parseMessage(org.w3c.dom.Element msgEl,
Definition def)
|
protected Operation |
parseOperation(org.w3c.dom.Element opEl,
PortType portType,
Definition def)
|
protected Output |
parseOutput(org.w3c.dom.Element outputEl,
Definition def)
|
protected Part |
parsePart(org.w3c.dom.Element partEl,
Definition def)
|
protected Port |
parsePort(org.w3c.dom.Element portEl,
Definition def)
|
protected PortType |
parsePortType(org.w3c.dom.Element portTypeEl,
Definition def)
|
protected ExtensibilityElement |
parseSchema(java.lang.Class parentType,
org.w3c.dom.Element el,
Definition def)
|
protected ExtensibilityElement |
parseSchema(java.lang.Class parentType,
org.w3c.dom.Element el,
Definition def,
ExtensionRegistry extReg)
|
protected Service |
parseService(org.w3c.dom.Element serviceEl,
Definition def)
|
protected Types |
parseTypes(org.w3c.dom.Element typesEl,
Definition def)
|
Definition |
readWSDL(java.lang.String wsdlURI)
Read the WSDL document accessible via the specified URI into a WSDL definition. |
Definition |
readWSDL(java.lang.String documentBaseURI,
org.w3c.dom.Document wsdlDocument)
Read the specified WSDL document into a WSDL definition. |
Definition |
readWSDL(java.lang.String documentBaseURI,
org.w3c.dom.Element definitionsElement)
Read the specified <wsdl:definitions> element into a WSDL definition. |
protected Definition |
readWSDL(java.lang.String documentBaseURI,
org.w3c.dom.Element definitionsElement,
java.util.Map importedDefs)
|
Definition |
readWSDL(java.lang.String documentBaseURI,
org.xml.sax.InputSource inputSource)
Read a WSDL document into a WSDL definition. |
Definition |
readWSDL(java.lang.String contextURI,
java.lang.String wsdlURI)
Read the WSDL document accessible via the specified URI into a WSDL definition. |
Definition |
readWSDL(WSDLLocator locator)
Read a WSDL document into a WSDL definition. |
Definition |
readWSDL(WSDLLocator locator,
org.w3c.dom.Element definitionsElement)
Read the specified <wsdl:definitions> element into a WSDL definition. |
void |
setExtensionRegistry(ExtensionRegistry extReg)
Set the extension registry to be used when reading WSDL documents into a WSDL definition. |
void |
setFactoryImplName(java.lang.String factoryImplName)
Set a different factory implementation to use for creating definitions when reading WSDL documents. |
void |
setFeature(java.lang.String name,
boolean value)
Sets the specified feature to the specified value. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected boolean verbose
protected boolean importDocuments
protected ExtensionRegistry extReg
protected java.lang.String factoryImplName
protected WSDLLocator loc
protected WSDLFactory factory
protected java.util.Map allSchemas
Constructor Detail |
---|
public WSDLReaderImpl()
Method Detail |
---|
public void setFeature(java.lang.String name, boolean value) throws java.lang.IllegalArgumentException
The supported features are:
Name | Description | Default Value |
---|---|---|
If set to true, status messages will be displayed. | ||
If set to true, imported WSDL documents will be retrieved and processed. |
All feature names must be fully-qualified, Java package style. All names starting with javax.wsdl. are reserved for features defined by the JWSDL specification. It is recommended that implementation- specific features be fully-qualified to match the package name of that implementation. For example: com.abc.featureName
setFeature
in interface WSDLReader
name
- the name of the feature to be set.value
- the value to set the feature to.
java.lang.IllegalArgumentException
- if the feature name is not recognized.getFeature(String)
public boolean getFeature(java.lang.String name) throws java.lang.IllegalArgumentException
getFeature
in interface WSDLReader
name
- the name of the feature to get the value of.
java.lang.IllegalArgumentException
- if the feature name is not recognized.setFeature(String, boolean)
public void setExtensionRegistry(ExtensionRegistry extReg)
setExtensionRegistry
in interface WSDLReader
extReg
- the extension registry to use for new
definitionspublic ExtensionRegistry getExtensionRegistry()
getExtensionRegistry
in interface WSDLReader
protected WSDLFactory getWSDLFactory() throws WSDLException
WSDLException
public void setFactoryImplName(java.lang.String factoryImplName) throws java.lang.UnsupportedOperationException
setFactoryImplName
in interface WSDLReader
factoryImplName
- the fully-qualified class name of the
class which provides a concrete implementation of the abstract
class WSDLFactory.
java.lang.UnsupportedOperationException
- if this method
is invoked on an implementation which does not
support it.public java.lang.String getFactoryImplName()
getFactoryImplName
in interface WSDLReader
protected Definition parseDefinitions(java.lang.String documentBaseURI, org.w3c.dom.Element defEl, java.util.Map importedDefs) throws WSDLException
WSDLException
protected Import parseImport(org.w3c.dom.Element importEl, Definition def, java.util.Map importedDefs) throws WSDLException
WSDLException
protected Types parseTypes(org.w3c.dom.Element typesEl, Definition def) throws WSDLException
WSDLException
protected ExtensibilityElement parseSchema(java.lang.Class parentType, org.w3c.dom.Element el, Definition def) throws WSDLException
WSDLException
protected ExtensibilityElement parseSchema(java.lang.Class parentType, org.w3c.dom.Element el, Definition def, ExtensionRegistry extReg) throws WSDLException
WSDLException
protected Binding parseBinding(org.w3c.dom.Element bindingEl, Definition def) throws WSDLException
WSDLException
protected BindingOperation parseBindingOperation(org.w3c.dom.Element bindingOperationEl, PortType portType, Definition def) throws WSDLException
WSDLException
protected BindingInput parseBindingInput(org.w3c.dom.Element bindingInputEl, Definition def) throws WSDLException
WSDLException
protected BindingOutput parseBindingOutput(org.w3c.dom.Element bindingOutputEl, Definition def) throws WSDLException
WSDLException
protected BindingFault parseBindingFault(org.w3c.dom.Element bindingFaultEl, Definition def) throws WSDLException
WSDLException
protected Message parseMessage(org.w3c.dom.Element msgEl, Definition def) throws WSDLException
WSDLException
protected Part parsePart(org.w3c.dom.Element partEl, Definition def) throws WSDLException
WSDLException
protected void parseExtensibilityAttributes(org.w3c.dom.Element el, java.lang.Class parentType, AttributeExtensible attrExt, Definition def) throws WSDLException
WSDLException
protected java.lang.Object parseExtensibilityAttribute(org.w3c.dom.Element el, int attrType, java.lang.String attrValue, Definition def) throws WSDLException
WSDLException
protected PortType parsePortType(org.w3c.dom.Element portTypeEl, Definition def) throws WSDLException
WSDLException
protected Operation parseOperation(org.w3c.dom.Element opEl, PortType portType, Definition def) throws WSDLException
WSDLException
protected Service parseService(org.w3c.dom.Element serviceEl, Definition def) throws WSDLException
WSDLException
protected Port parsePort(org.w3c.dom.Element portEl, Definition def) throws WSDLException
WSDLException
protected ExtensibilityElement parseExtensibilityElement(java.lang.Class parentType, org.w3c.dom.Element el, Definition def) throws WSDLException
WSDLException
protected Input parseInput(org.w3c.dom.Element inputEl, Definition def) throws WSDLException
WSDLException
protected Output parseOutput(org.w3c.dom.Element outputEl, Definition def) throws WSDLException
WSDLException
protected Fault parseFault(org.w3c.dom.Element faultEl, Definition def) throws WSDLException
WSDLException
public Definition readWSDL(java.lang.String wsdlURI) throws WSDLException
readWSDL
in interface WSDLReader
wsdlURI
- a URI (can be a filename or URL) pointing to a
WSDL XML definition.
WSDLException
public Definition readWSDL(java.lang.String contextURI, java.lang.String wsdlURI) throws WSDLException
readWSDL
in interface WSDLReader
contextURI
- the context in which to resolve the
wsdlURI, if the wsdlURI is relative. Can be null, in which
case it will be ignored.wsdlURI
- a URI (can be a filename or URL) pointing to a
WSDL XML definition.
WSDLException
public Definition readWSDL(java.lang.String documentBaseURI, org.w3c.dom.Element definitionsElement) throws WSDLException
readWSDL
in interface WSDLReader
documentBaseURI
- the document base URI of the WSDL definition
described by the element. Will be set as the documentBaseURI
of the returned Definition. Can be null, in which case it
will be ignored.definitionsElement
- the <wsdl:definitions> element
WSDLException
public Definition readWSDL(WSDLLocator locator, org.w3c.dom.Element definitionsElement) throws WSDLException
readWSDL
in interface WSDLReader
locator
- A WSDLLocator object used to provide
the document base URI of the WSDL definition described by the
element.definitionsElement
- the <wsdl:definitions> element
WSDLException
protected Definition readWSDL(java.lang.String documentBaseURI, org.w3c.dom.Element definitionsElement, java.util.Map importedDefs) throws WSDLException
WSDLException
public Definition readWSDL(java.lang.String documentBaseURI, org.w3c.dom.Document wsdlDocument) throws WSDLException
readWSDL
in interface WSDLReader
documentBaseURI
- the document base URI of the WSDL definition
described by the document. Will be set as the documentBaseURI
of the returned Definition. Can be null, in which case it
will be ignored.wsdlDocument
- the WSDL document, an XML
document obeying the WSDL schema.
WSDLException
public Definition readWSDL(java.lang.String documentBaseURI, org.xml.sax.InputSource inputSource) throws WSDLException
readWSDL
in interface WSDLReader
documentBaseURI
- the document base URI of the WSDL definition
described by the document. Will be set as the documentBaseURI
of the returned Definition. Can be null, in which case it
will be ignored.inputSource
- an InputSource pointing to the
WSDL document, an XML document obeying the WSDL schema.
WSDLException
public Definition readWSDL(WSDLLocator locator) throws WSDLException
readWSDL
in interface WSDLReader
locator
- A WSDLLocator object used to provide InputSources
pointing to the wsdl file.
WSDLException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |