Author: dougsleite
Date: Wed Jan 28 00:43:11 2009
New Revision: 738324

URL: http://svn.apache.org/viewvc?rev=738324&view=rev
Log: (empty)

Added:
    tuscany/sandbox/dougsleite/conversationTest/
    tuscany/sandbox/dougsleite/conversationTest/pom.xml
    tuscany/sandbox/dougsleite/conversationTest/src/
    tuscany/sandbox/dougsleite/conversationTest/src/main/
    tuscany/sandbox/dougsleite/conversationTest/src/main/java/
    tuscany/sandbox/dougsleite/conversationTest/src/main/java/client/
    tuscany/sandbox/dougsleite/conversationTest/src/main/java/client/Client.java
    
tuscany/sandbox/dougsleite/conversationTest/src/main/java/client/ClientCallback.java
    
tuscany/sandbox/dougsleite/conversationTest/src/main/java/client/ClientImpl.java
    tuscany/sandbox/dougsleite/conversationTest/src/main/java/main/
    tuscany/sandbox/dougsleite/conversationTest/src/main/java/main/Main.java
    tuscany/sandbox/dougsleite/conversationTest/src/main/java/server/
    
tuscany/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProvider.java
    
tuscany/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProviderImpl.java
    tuscany/sandbox/dougsleite/conversationTest/src/main/resources/
    
tuscany/sandbox/dougsleite/conversationTest/src/main/resources/callback.composite
    tuscany/sandbox/dougsleite/conversationTest/src/test/
    tuscany/sandbox/dougsleite/conversationTest/src/test/java/
    tuscany/sandbox/dougsleite/conversationTest/src/test/java/test/
    
tuscany/sandbox/dougsleite/conversationTest/src/test/java/test/ConversationTestCase.java

Added: tuscany/sandbox/dougsleite/conversationTest/pom.xml
URL: 
http://svn.apache.org/viewvc/tuscany/sandbox/dougsleite/conversationTest/pom.xml?rev=738324&view=auto
==============================================================================
--- tuscany/sandbox/dougsleite/conversationTest/pom.xml (added)
+++ tuscany/sandbox/dougsleite/conversationTest/pom.xml Wed Jan 28 00:43:11 2009
@@ -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.4-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <artifactId>test-conversation</artifactId>
+    <name>Conversation Test</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.4-SNAPSHOT</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-implementation-java-runtime</artifactId>
+            <version>1.4-SNAPSHOT</version>
+            <scope>runtime</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.2</version>
+            <scope>test</scope>
+        </dependency>
+
+    </dependencies>
+
+    <build>
+       <finalName>${artifactId}</finalName>
+    </build>
+
+</project>

Added: 
tuscany/sandbox/dougsleite/conversationTest/src/main/java/client/Client.java
URL: 
http://svn.apache.org/viewvc/tuscany/sandbox/dougsleite/conversationTest/src/main/java/client/Client.java?rev=738324&view=auto
==============================================================================
--- 
tuscany/sandbox/dougsleite/conversationTest/src/main/java/client/Client.java 
(added)
+++ 
tuscany/sandbox/dougsleite/conversationTest/src/main/java/client/Client.java 
Wed Jan 28 00:43:11 2009
@@ -0,0 +1,26 @@
+/*
+ * 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 client;
+
+
+public interface Client {
+
+    public void someClientMethod();
+}

Added: 
tuscany/sandbox/dougsleite/conversationTest/src/main/java/client/ClientCallback.java
URL: 
http://svn.apache.org/viewvc/tuscany/sandbox/dougsleite/conversationTest/src/main/java/client/ClientCallback.java?rev=738324&view=auto
==============================================================================
--- 
tuscany/sandbox/dougsleite/conversationTest/src/main/java/client/ClientCallback.java
 (added)
+++ 
tuscany/sandbox/dougsleite/conversationTest/src/main/java/client/ClientCallback.java
 Wed Jan 28 00:43:11 2009
@@ -0,0 +1,27 @@
+/*
+ * 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 client;
+
+
+
+public interface ClientCallback {
+    
+    public void receiveResult(String s);
+}

Added: 
tuscany/sandbox/dougsleite/conversationTest/src/main/java/client/ClientImpl.java
URL: 
http://svn.apache.org/viewvc/tuscany/sandbox/dougsleite/conversationTest/src/main/java/client/ClientImpl.java?rev=738324&view=auto
==============================================================================
--- 
tuscany/sandbox/dougsleite/conversationTest/src/main/java/client/ClientImpl.java
 (added)
+++ 
tuscany/sandbox/dougsleite/conversationTest/src/main/java/client/ClientImpl.java
 Wed Jan 28 00:43:11 2009
@@ -0,0 +1,55 @@
+/*
+ * 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 client;
+
+import server.ServiceProvider;
+import main.*;
+import java.util.logging.Level;
+import java.util.logging.Logger;
+import org.osoa.sca.annotations.Reference;
+import org.osoa.sca.annotations.Scope;
+import org.osoa.sca.annotations.Service;
+
+
+...@service(Client.class)
+...@scope("COMPOSITE")
+public class ClientImpl implements ClientCallback, Client {
+
+    @Reference
+    public ServiceProvider service;
+
+    public void receiveResult(String s) {
+        System.out.println("client receiving the result: "+ s);
+    }
+
+    public void someClientMethod() {
+        service.someServiceMethod();
+        
+        try {
+            System.out.println("Sleeping at client!");
+            Thread.sleep(1000);
+        } catch (InterruptedException ex) {
+            Logger.getLogger(ClientImpl.class.getName()).log(Level.SEVERE, 
null, ex);
+        }
+        System.out.println("Waking up at client!");
+        
+        service.close();
+    }
+}

Added: tuscany/sandbox/dougsleite/conversationTest/src/main/java/main/Main.java
URL: 
http://svn.apache.org/viewvc/tuscany/sandbox/dougsleite/conversationTest/src/main/java/main/Main.java?rev=738324&view=auto
==============================================================================
--- tuscany/sandbox/dougsleite/conversationTest/src/main/java/main/Main.java 
(added)
+++ tuscany/sandbox/dougsleite/conversationTest/src/main/java/main/Main.java 
Wed Jan 28 00:43:11 2009
@@ -0,0 +1,37 @@
+/*
+ * 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 main;
+
+import client.Client;
+import org.apache.tuscany.sca.host.embedded.SCADomain;
+
+
+public class Main {
+    
+    public static void main(String... args) {
+        SCADomain scaDomain = SCADomain.newInstance("callback.composite");
+        
+        Client client = scaDomain.getService(Client.class, "Consumer");
+        client.someClientMethod();        
+        
+        //scaDomain.close();
+    }
+
+}

Added: 
tuscany/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProvider.java
URL: 
http://svn.apache.org/viewvc/tuscany/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProvider.java?rev=738324&view=auto
==============================================================================
--- 
tuscany/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProvider.java
 (added)
+++ 
tuscany/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProvider.java
 Wed Jan 28 00:43:11 2009
@@ -0,0 +1,40 @@
+/*
+ * 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 server;
+
+import client.ClientCallback;
+import org.osoa.sca.annotations.Callback;
+import org.osoa.sca.annotations.Conversational;
+import org.osoa.sca.annotations.EndsConversation;
+import org.osoa.sca.annotations.OneWay;
+
+
+
+...@conversational
+...@callback(ClientCallback.class)
+public interface ServiceProvider {
+
+    @OneWay
+    public void someServiceMethod();
+    
+    @EndsConversation
+    public void close();
+    
+}

Added: 
tuscany/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProviderImpl.java
URL: 
http://svn.apache.org/viewvc/tuscany/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProviderImpl.java?rev=738324&view=auto
==============================================================================
--- 
tuscany/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProviderImpl.java
 (added)
+++ 
tuscany/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProviderImpl.java
 Wed Jan 28 00:43:11 2009
@@ -0,0 +1,53 @@
+/*
+ * 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 server;
+
+import client.ClientCallback;
+import java.util.logging.Level;
+import java.util.logging.Logger;
+import org.osoa.sca.annotations.Callback;
+import org.osoa.sca.annotations.Scope;
+import org.osoa.sca.annotations.Service;
+
+
+...@service(ServiceProvider.class)
+...@scope("COMPOSITE")
+public class ServiceProviderImpl implements ServiceProvider {
+
+    @Callback
+    public ClientCallback callback;
+
+    public void someServiceMethod() {
+        
+        try {
+            System.out.println("Sleeping at server!");
+            Thread.sleep(5000);
+        } catch (InterruptedException ex) {
+            
Logger.getLogger(ServiceProviderImpl.class.getName()).log(Level.SEVERE, null, 
ex);
+        }
+        System.out.println("Waking up at server!");
+        
+        callback.receiveResult("RESULT");
+    }
+
+    public void close() {
+        System.out.println("Closing the conversation on the server!");
+    }
+}

Added: 
tuscany/sandbox/dougsleite/conversationTest/src/main/resources/callback.composite
URL: 
http://svn.apache.org/viewvc/tuscany/sandbox/dougsleite/conversationTest/src/main/resources/callback.composite?rev=738324&view=auto
==============================================================================
--- 
tuscany/sandbox/dougsleite/conversationTest/src/main/resources/callback.composite
 (added)
+++ 
tuscany/sandbox/dougsleite/conversationTest/src/main/resources/callback.composite
 Wed Jan 28 00:43:11 2009
@@ -0,0 +1,34 @@
+<?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";
+                xmlns:t="http://tuscany.apache.org/xmlns/sca/1.0";
+               targetNamespace="http://callback";
+               name="callback">
+
+       <component name="Consumer">
+               <implementation.java class="client.ClientImpl"/>        
+               <reference name="service" target="ServiceProvider"/>
+       </component>  
+               
+       <component name="ServiceProvider">
+               <implementation.java class="server.ServiceProviderImpl"/> 
+       </component> 
+
+</composite>

Added: 
tuscany/sandbox/dougsleite/conversationTest/src/test/java/test/ConversationTestCase.java
URL: 
http://svn.apache.org/viewvc/tuscany/sandbox/dougsleite/conversationTest/src/test/java/test/ConversationTestCase.java?rev=738324&view=auto
==============================================================================
--- 
tuscany/sandbox/dougsleite/conversationTest/src/test/java/test/ConversationTestCase.java
 (added)
+++ 
tuscany/sandbox/dougsleite/conversationTest/src/test/java/test/ConversationTestCase.java
 Wed Jan 28 00:43:11 2009
@@ -0,0 +1,46 @@
+/*
+ * 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 test;
+
+import client.Client;
+import junit.framework.TestCase;
+
+import org.apache.tuscany.sca.host.embedded.SCADomain;
+
+public class ConversationTestCase extends TestCase {
+
+    private Client client;
+    private SCADomain domain;
+
+    @Override
+    protected void setUp() throws Exception {
+        domain = SCADomain.newInstance("callback.composite");
+
+        client = domain.getService(Client.class, "Consumer");
+    }
+
+    @Override
+    protected void tearDown() throws Exception {
+        domain.close();
+    }
+
+    public void test() throws Exception {
+        client.someClientMethod();
+    }
+}


Reply via email to