Home > Apache 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 |
Apache Tuscany Docs 2.x
SCA Java implementation.java
<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 examplesThis 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> |
Bookmark this on Delicious Digg this | Privacy Policy - Copyright © 2003-2010, The Apache Software Foundation, Licensed under ASL 2.0. |