From 200a40b332420f94992eb39a6d0ea1cf1490ffc4 Mon Sep 17 00:00:00 2001 From: coreyg Date: Fri, 21 Nov 2014 09:30:19 +0000 Subject: Adding tuscany's website to their svn repo for svnpubsub git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1640879 13f79535-47bb-0310-9956-ffa450edef68 --- .../sca-java-implementationjava.html | 175 +++++++++++++++++++++ 1 file changed, 175 insertions(+) create mode 100644 site/trunk/site-publish/documentation-2x/sca-java-implementationjava.html (limited to 'site/trunk/site-publish/documentation-2x/sca-java-implementationjava.html') diff --git a/site/trunk/site-publish/documentation-2x/sca-java-implementationjava.html b/site/trunk/site-publish/documentation-2x/sca-java-implementationjava.html new file mode 100644 index 0000000000..5bf0190806 --- /dev/null +++ b/site/trunk/site-publish/documentation-2x/sca-java-implementationjava.html @@ -0,0 +1,175 @@ + + + + + + + + + + + + + + + SCA Java implementation.java : Apache Tuscany + + + + + + + + + + + +
+ HomeApache Tuscany Docs 2.x > Index > SCA Java Extensions Guide > SCA Java implementation.java + +
+ + + + + + +
+
+ + + + + + + + +
+  Apache Tuscany Docs 2.x > Index > SCA Java Extensions Guide > SCA Java implementation.java + + Tuscany Home | User List | Dev List | Issue Tracker   +
+ + + + + + +
+
Table of Contents
+
+ + +
+
+ +
+ + +
+
+

<implementation.java>

+ + +

The Tuscany Java SCA runtime supports components implemented in Java by using the <implementation.java> SCDL extension.

+ +

The Java component implementation SCDL has the following format:

+ +
+
+   <implementation.java class="NCName" />
+
+
+ +

Where the class attribute is the fully qualified name of the Java class of the implementation.

+ +

The Java component implementtaion is one of the SCA extensions which is being formalized in the OASIS Open Composite Services Architecture with a published specifications document.

+ +

some examples

+ +

This example shows a simple composite with a component that uses <implemantation.java>:

+ +
+
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
+    targetNamespace="http://sample"
+    xmlns:sample="http://sample"
+    name="SampleComposite">
+
+    <component name="SampleComponent">
+       <implementation.java class="sample.SampleImpl"/>
+    </component>
+    
+</composite>
+
+
+
+ +
+
+
+ + + + + + + +
+ + + \ No newline at end of file -- cgit v1.2.3