You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by sl...@apache.org on 2007/05/16 13:38:37 UTC

svn commit: r538543 - in /incubator/tuscany/java/sca/samples/binding-echo-appl: ./ src/ src/main/ src/main/java/ src/main/java/echo/ src/main/java/echo/appl/ src/main/java/echo/client/ src/main/resources/ src/test/ src/test/java/ src/test/java/echo/ sr...

Author: slaws
Date: Wed May 16 04:38:36 2007
New Revision: 538543

URL: http://svn.apache.org/viewvc?view=rev&rev=538543
Log:
move the application code out of binding-echo into here
TUSCANY-1288

Added:
    incubator/tuscany/java/sca/samples/binding-echo-appl/
    incubator/tuscany/java/sca/samples/binding-echo-appl/README   (with props)
    incubator/tuscany/java/sca/samples/binding-echo-appl/binding-echo.png
      - copied unchanged from r538478, incubator/tuscany/java/sca/samples/binding-echo/binding-echo.png
    incubator/tuscany/java/sca/samples/binding-echo-appl/binding-echo.svg
      - copied unchanged from r538478, incubator/tuscany/java/sca/samples/binding-echo/binding-echo.svg
    incubator/tuscany/java/sca/samples/binding-echo-appl/build.xml   (with props)
    incubator/tuscany/java/sca/samples/binding-echo-appl/pom.xml   (with props)
    incubator/tuscany/java/sca/samples/binding-echo-appl/src/
    incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/
    incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/
    incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/
    incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/appl/
    incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/appl/Echo.java   (with props)
    incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/appl/EchoComponentImpl.java   (with props)
    incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/client/
    incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/client/EchoBindingClient.java   (with props)
    incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/resources/
    incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/resources/EchoBindingApplication.composite
    incubator/tuscany/java/sca/samples/binding-echo-appl/src/test/
    incubator/tuscany/java/sca/samples/binding-echo-appl/src/test/java/
    incubator/tuscany/java/sca/samples/binding-echo-appl/src/test/java/echo/
    incubator/tuscany/java/sca/samples/binding-echo-appl/src/test/java/echo/appl/
    incubator/tuscany/java/sca/samples/binding-echo-appl/src/test/java/echo/appl/EchoApplTestCase.java   (with props)

Added: incubator/tuscany/java/sca/samples/binding-echo-appl/README
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/binding-echo-appl/README?view=auto&rev=538543
==============================================================================
--- incubator/tuscany/java/sca/samples/binding-echo-appl/README (added)
+++ incubator/tuscany/java/sca/samples/binding-echo-appl/README Wed May 16 04:38:36 2007
@@ -0,0 +1,104 @@
+Binding Echo Sample Application
+===============================
+This sample demonstrates how to use the new binding extension 
+binding-echo
+
+The README in the samples directory (the directory above this) provides 
+general instructions about building and running samples. Take a look there 
+first. 
+
+If you just want to run it to see what happens, open a command prompt,
+navigate to this sample directory, and do
+
+ant run 
+
+OR if you don't have ant, on Windows do
+
+java -cp ..\..\lib\tuscany-sca-manifest.jar;..\binding-echo\target\sample-binding-echo.jar;target\sample-binding-echo-appl.jar echo.client.EchoBindingClien
+
+and on *nix do
+
+java -cp ../../lib/tuscany-sca-manifest.jar:../binding-echo/target/sample-binding-echo.jar:target/sample-binding-echo-appl.jar echo.client.EchoBindingClient
+
+This looks like a long command. The three things we add to the classpath are
+
+tuscany-sca-manifest.jar - all of the standard Tuscany SCA runtime and 
+                           extension classes
+sample-binding-echo.jar  - the new echo binding extension implementation
+sample-binding-echo-appl - the application that uses the echo binding                         
+
+
+Sample Overview
+---------------
+This sample contains an application (client and server code) that uses
+an SCA binding that simply echoes back any messages that are sent to it. 
+
+binding-echo-appl/
+  src/
+    main/
+      java/
+        echo/
+          appl/
+            Echo.java              - interface definition for the sample  
+                                     reference and service
+            EchoComponentImpl.java - sample component implementation with 
+                                     echo binding reference
+          client/
+            EchoBindingClient.java - sample client
+      resources/
+        EchoBindingApplication.composite  - the SCA assembly for this sample
+    test/
+      java/ 
+        echo
+          appl/
+            EchoApplTestCase.java  - sample JUnit test case for the sample 
+                                     client
+  binding-echo-appl.png            - pictorial representation of the sample 
+                                     .composite file
+  build.xml                        - the Ant build file
+  pom.xml                          - the Maven build file
+  
+
+Building And Running The Sample Using Ant
+-----------------------------------------
+With the binary distribution the sample can be built and run using Ant as 
+follows.
+
+cd binding-echo-appl
+ant compile
+ant run
+
+You should see the following output from the run target.
+
+run:
+     [java] Returned message: foo
+     [java] Echo reference = foo
+     [java] Returned message: baa
+     [java] Echo service = baa
+
+
+Building And Running The Sample Using Maven 
+-------------------------------------------
+With either the binary or source distributions the sample can be built and
+run using Maven as follows. 
+
+cd binding-echo-appl
+mvn
+
+You should see the following output from the test phase.
+
+-------------------------------------------------------
+ T E S T S
+-------------------------------------------------------
+Running echoAppl.EchoApplTestCase
+Returned message: foo
+Echo reference = foo
+Returned message: baa
+Echo service = baa
+Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.111 sec
+
+Results :
+
+Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
+
+This shows that the Junit test cases have run successfully. 

Propchange: incubator/tuscany/java/sca/samples/binding-echo-appl/README
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/binding-echo-appl/README
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: incubator/tuscany/java/sca/samples/binding-echo-appl/build.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/binding-echo-appl/build.xml?view=auto&rev=538543
==============================================================================
--- incubator/tuscany/java/sca/samples/binding-echo-appl/build.xml (added)
+++ incubator/tuscany/java/sca/samples/binding-echo-appl/build.xml Wed May 16 04:38:36 2007
@@ -0,0 +1,75 @@
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.    
+-->
+<project name="binding-echo-appl" default="compile">
+    <property name="test.class" value="echo.client.EchoBindingClient" />
+	<property name="test.jar"   value="sample-binding-echo-appl.jar" />
+	
+    <target name="init">
+        <mkdir dir="target/classes"/>
+    </target>
+	
+    <target name="compile" depends="init">
+        <javac srcdir="src/main/java"
+               destdir="target/classes"
+               debug="on"
+               source="1.5"
+               target="1.5">
+            <classpath>
+                <pathelement location="../binding-echo/target/sample-binding-echo.jar"/>
+                <pathelement location="../../lib/tuscany-sca-manifest.jar"/>
+            </classpath>
+        </javac> 
+        <copy todir="target/classes">
+            <fileset dir="src/main/resources"/>
+        </copy>
+        <jar destfile="target/${test.jar}" basedir="target/classes">
+            <manifest>
+                <attribute name="Main-Class" value="${test.class}" /> 
+            </manifest>
+        </jar>      
+    </target>	
+	
+    <target name="run-classes" depends="compile">
+        <java classname="${test.class}"
+              fork="true">
+            <classpath>
+                <pathelement path="target/classes"/>
+                <pathelement location="../binding-echo/target/sample-binding-echo.jar"/>
+            	<pathelement location="../../lib/tuscany-sca-manifest.jar"/>
+            </classpath>
+        </java>
+    </target>
+	
+    <target name="run" depends="compile">
+        <java classname="${test.class}"
+              fork="true">
+            <classpath>
+                <pathelement location="target/${test.jar}"/>
+                <pathelement location="../binding-echo/target/sample-binding-echo.jar"/>
+                <pathelement location="../../lib/tuscany-sca-manifest.jar"/>
+            </classpath>
+        </java>    	
+    </target>	
+	
+    <target name="clean">
+        <delete quiet="true" includeemptydirs="true">
+            <fileset dir="target"/>
+        </delete>
+    </target>
+</project>

Propchange: incubator/tuscany/java/sca/samples/binding-echo-appl/build.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/binding-echo-appl/build.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/tuscany/java/sca/samples/binding-echo-appl/build.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/tuscany/java/sca/samples/binding-echo-appl/pom.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/binding-echo-appl/pom.xml?view=auto&rev=538543
==============================================================================
--- incubator/tuscany/java/sca/samples/binding-echo-appl/pom.xml (added)
+++ incubator/tuscany/java/sca/samples/binding-echo-appl/pom.xml Wed May 16 04:38:36 2007
@@ -0,0 +1,64 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    * Licensed to the Apache Software Foundation (ASF) under one
+    * or more contributor license agreements.  See the NOTICE file
+    * distributed with this work for additional information
+    * regarding copyright ownership.  The ASF licenses this file
+    * to you under the Apache License, Version 2.0 (the
+    * "License"); you may not use this file except in compliance
+    * with the License.  You may obtain a copy of the License at
+    * 
+    *   http://www.apache.org/licenses/LICENSE-2.0
+    * 
+    * Unless required by applicable law or agreed to in writing,
+    * software distributed under the License is distributed on an
+    * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    * KIND, either express or implied.  See the License for the
+    * specific language governing permissions and limitations
+    * under the License.    
+-->
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.tuscany.sca</groupId>
+        <artifactId>tuscany-sca</artifactId>
+        <version>1.0-incubating-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+    <artifactId>sample-binding-echo-appl</artifactId>
+    <name>Apache Tuscany Echo Binding Sample Application</name>
+
+    <repositories>
+       <repository>
+          <id>apache.incubator</id>
+          <url>http://people.apache.org/repo/m2-incubating-repository</url>
+       </repository>
+    </repositories>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-host-embedded</artifactId>
+            <version>1.0-incubating-SNAPSHOT</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>sample-binding-echo</artifactId>
+            <version>1.0-incubating-SNAPSHOT</version>
+        </dependency>        
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.2</version>
+            <scope>test</scope>
+        </dependency>
+
+    </dependencies>
+
+    <build>
+       <finalName>${artifactId}</finalName>
+    </build>
+
+</project>

Propchange: incubator/tuscany/java/sca/samples/binding-echo-appl/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/binding-echo-appl/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/tuscany/java/sca/samples/binding-echo-appl/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/appl/Echo.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/appl/Echo.java?view=auto&rev=538543
==============================================================================
--- incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/appl/Echo.java (added)
+++ incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/appl/Echo.java Wed May 16 04:38:36 2007
@@ -0,0 +1,29 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.    
+ */
+package echo.appl;
+
+/**
+ * Interface of our sample Echo service.
+ * 
+ * @version $Rev$ $Date$
+ */
+public interface Echo {
+    
+    String echo(String msg);
+}

Propchange: incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/appl/Echo.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/appl/Echo.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/appl/EchoComponentImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/appl/EchoComponentImpl.java?view=auto&rev=538543
==============================================================================
--- incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/appl/EchoComponentImpl.java (added)
+++ incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/appl/EchoComponentImpl.java Wed May 16 04:38:36 2007
@@ -0,0 +1,44 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.    
+ */
+package echo.appl;
+
+import org.osoa.sca.annotations.Constructor;
+import org.osoa.sca.annotations.Reference;
+
+
+/**
+ * A simple client component that uses a reference with an Echo binding.
+ * 
+ * @version $Rev$ $Date$
+ */
+public class EchoComponentImpl implements Echo {
+
+    private Echo echoReference;
+
+    @Constructor
+    public EchoComponentImpl(@Reference(name = "echoReference", required = true) Echo echoReference) {
+        this.echoReference = echoReference;
+    }
+
+    public String echo(String msg) {
+        String result = echoReference.echo(msg);
+        System.out.println("Returned message: "+ result);
+        return result;
+    }
+}

Propchange: incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/appl/EchoComponentImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/appl/EchoComponentImpl.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/client/EchoBindingClient.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/client/EchoBindingClient.java?view=auto&rev=538543
==============================================================================
--- incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/client/EchoBindingClient.java (added)
+++ incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/client/EchoBindingClient.java Wed May 16 04:38:36 2007
@@ -0,0 +1,51 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.    
+ */
+package echo.client;
+
+import org.apache.tuscany.sca.host.embedded.SCADomain;
+
+import echo.appl.Echo;
+import echo.server.EchoServer;
+
+/**
+ * This client program shows how to create an SCA runtime, start it,
+ * and locate and invoke a SCA component
+ * @version $Rev$ $Date$
+ */
+public class EchoBindingClient {
+    public static void main(String[] args) throws Exception {
+
+        SCADomain scaDomain  = SCADomain.newInstance("EchoBindingApplication.composite");
+        
+        
+        // Call the echo service component which will, in turn, call its 
+        // reference which will echo the string back
+        Echo service = scaDomain.getService(Echo.class, "EchoComponent");
+        String echoString = service.echo("foo");
+        System.out.println("Echo reference = " + echoString );
+
+        // Call the echo servic which will echo the string back straight
+        // away
+        echoString = EchoServer.getServer().sendReceive("EchoComponent/EchoService", "baa");
+        System.out.println("Echo service = " + echoString );
+        scaDomain.close();
+
+    }
+
+}

Propchange: incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/client/EchoBindingClient.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/java/echo/client/EchoBindingClient.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/resources/EchoBindingApplication.composite
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/resources/EchoBindingApplication.composite?view=auto&rev=538543
==============================================================================
--- incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/resources/EchoBindingApplication.composite (added)
+++ incubator/tuscany/java/sca/samples/binding-echo-appl/src/main/resources/EchoBindingApplication.composite Wed May 16 04:38:36 2007
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.    
+-->
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
+	targetNamespace="http://echo"
+	xmlns:echo="http://echo"
+	name="EchoBinding">
+
+    <service name="EchoService" promote="EchoComponent">
+        <interface.java interface="echo.appl.Echo"/>
+        <binding.echo uri="http://tempuri.org" />
+    </service>
+
+    <component name="EchoComponent">
+        <implementation.java class="echo.appl.EchoComponentImpl"/>
+    </component>
+    
+    <reference name="EchoReference" promote="EchoComponent/echoReference">
+        <interface.java interface="echo.appl.Echo"/>
+        <binding.echo uri="http://tempuri.org" />
+    </reference>
+    
+</composite>

Added: incubator/tuscany/java/sca/samples/binding-echo-appl/src/test/java/echo/appl/EchoApplTestCase.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/binding-echo-appl/src/test/java/echo/appl/EchoApplTestCase.java?view=auto&rev=538543
==============================================================================
--- incubator/tuscany/java/sca/samples/binding-echo-appl/src/test/java/echo/appl/EchoApplTestCase.java (added)
+++ incubator/tuscany/java/sca/samples/binding-echo-appl/src/test/java/echo/appl/EchoApplTestCase.java Wed May 16 04:38:36 2007
@@ -0,0 +1,30 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.    
+ */
+
+package echo.appl;
+
+import echo.client.EchoBindingClient;
+import junit.framework.TestCase;
+
+public class EchoApplTestCase extends TestCase {
+
+    public void test() throws Exception {
+        EchoBindingClient.main(null);
+    }
+}

Propchange: incubator/tuscany/java/sca/samples/binding-echo-appl/src/test/java/echo/appl/EchoApplTestCase.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/java/sca/samples/binding-echo-appl/src/test/java/echo/appl/EchoApplTestCase.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org