From 8751ca0a45b9343f37161c9f762fb4c485944a5f Mon Sep 17 00:00:00 2001 From: beckerdo Date: Sun, 1 Feb 2009 20:45:55 +0000 Subject: TUSCANY-2485 Add JavaDocs for Tuscany 1.4 git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@739833 13f79535-47bb-0310-9956-ffa450edef68 --- .../wsdl/xml/WSDLDocumentProcessor.html | 459 +++++++++++++++++++++ 1 file changed, 459 insertions(+) create mode 100644 site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/interfacedef/wsdl/xml/WSDLDocumentProcessor.html (limited to 'site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/interfacedef/wsdl/xml/WSDLDocumentProcessor.html') diff --git a/site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/interfacedef/wsdl/xml/WSDLDocumentProcessor.html b/site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/interfacedef/wsdl/xml/WSDLDocumentProcessor.html new file mode 100644 index 0000000000..5358bf9a1c --- /dev/null +++ b/site/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/interfacedef/wsdl/xml/WSDLDocumentProcessor.html @@ -0,0 +1,459 @@ + + + + + + +WSDLDocumentProcessor + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.tuscany.sca.interfacedef.wsdl.xml +
+Class WSDLDocumentProcessor

+
+java.lang.Object
+  extended by org.apache.tuscany.sca.interfacedef.wsdl.xml.WSDLDocumentProcessor
+
+
+
All Implemented Interfaces:
ArtifactProcessor<WSDLDefinition>, URLArtifactProcessor<WSDLDefinition>
+
+
+
+
public class WSDLDocumentProcessor
extends java.lang.Object
implements URLArtifactProcessor<WSDLDefinition>
+ + +

+An ArtifactProcessor for WSDL documents. +

+ +

+


+ +

+ + + + + + + + + + + + + + + + + + + +
+Field Summary
+static javax.xml.namespace.QNameWSDL11 + +
+           
+static javax.xml.namespace.QNameWSDL11_IMPORT + +
+           
+static javax.xml.namespace.QNameXSD + +
+           
+  + + + + + + + + + + +
+Constructor Summary
WSDLDocumentProcessor(ModelFactoryExtensionPoint modelFactories, + Monitor monitor) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ java.lang.StringgetArtifactType() + +
+          Returns the type of artifact handled by this artifact processor.
+ java.lang.Class<WSDLDefinition>getModelType() + +
+          Returns the type of model handled by this artifact processor.
+protected  WSDLDefinitionindexRead(java.net.URL doc) + +
+          Read the namespace for the WSDL definition and inline schemas
+ WSDLDefinitionread(java.net.URL contributionURL, + java.net.URI artifactURI, + java.net.URL artifactURL) + +
+          Reads a model from a URL.
+ voidresolve(WSDLDefinition model, + ModelResolver resolver) + +
+          Resolve references from this model to other models.
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Field Detail
+ +

+WSDL11

+
+public static final javax.xml.namespace.QName WSDL11
+
+
+
+
+
+ +

+WSDL11_IMPORT

+
+public static final javax.xml.namespace.QName WSDL11_IMPORT
+
+
+
+
+
+ +

+XSD

+
+public static final javax.xml.namespace.QName XSD
+
+
+
+
+ + + + + + + + +
+Constructor Detail
+ +

+WSDLDocumentProcessor

+
+public WSDLDocumentProcessor(ModelFactoryExtensionPoint modelFactories,
+                             Monitor monitor)
+
+
+ + + + + + + + +
+Method Detail
+ +

+read

+
+public WSDLDefinition read(java.net.URL contributionURL,
+                           java.net.URI artifactURI,
+                           java.net.URL artifactURL)
+                    throws ContributionReadException
+
+
Description copied from interface: URLArtifactProcessor
+
Reads a model from a URL. +

+

+
Specified by:
read in interface URLArtifactProcessor<WSDLDefinition>
+
+
+
Parameters:
contributionURL - Contribution location URL
artifactURI - Artifact URI
artifactURL - Artifact location URL +
Returns:
A model representation of the input. +
Throws: +
ContributionReadException
+
+
+
+ +

+resolve

+
+public void resolve(WSDLDefinition model,
+                    ModelResolver resolver)
+             throws ContributionResolveException
+
+
Description copied from interface: ArtifactProcessor
+
Resolve references from this model to other models. For example references + from a composite to another one, or references from a composite to a WSDL + model. +

+

+
Specified by:
resolve in interface ArtifactProcessor<WSDLDefinition>
+
+
+
Parameters:
model - The model to resolve
resolver - The resolver to use to resolve referenced models +
Throws: +
ContributionResolveException
+
+
+
+ +

+getArtifactType

+
+public java.lang.String getArtifactType()
+
+
Description copied from interface: URLArtifactProcessor
+
Returns the type of artifact handled by this artifact processor. +

+

+
Specified by:
getArtifactType in interface URLArtifactProcessor<WSDLDefinition>
+
+
+ +
Returns:
The type of artifact handled by this artifact processor
+
+
+
+ +

+getModelType

+
+public java.lang.Class<WSDLDefinition> getModelType()
+
+
Description copied from interface: ArtifactProcessor
+
Returns the type of model handled by this artifact processor. +

+

+
Specified by:
getModelType in interface ArtifactProcessor<WSDLDefinition>
+
+
+ +
Returns:
The type of model handled by this artifact processor
+
+
+
+ +

+indexRead

+
+protected WSDLDefinition indexRead(java.net.URL doc)
+                            throws java.lang.Exception
+
+
Read the namespace for the WSDL definition and inline schemas +

+

+
+
+
+
Parameters:
doc - +
Returns:
+
Throws: +
java.io.IOException +
javax.xml.stream.XMLStreamException +
java.lang.Exception
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + -- cgit v1.2.3