summaryrefslogtreecommitdiffstats
path: root/sandbox/dougsleite/conversationTest/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/dougsleite/conversationTest/src/main')
-rw-r--r--sandbox/dougsleite/conversationTest/src/main/java/client/Client.java26
-rw-r--r--sandbox/dougsleite/conversationTest/src/main/java/client/ClientCallback.java27
-rw-r--r--sandbox/dougsleite/conversationTest/src/main/java/client/ClientImpl.java55
-rw-r--r--sandbox/dougsleite/conversationTest/src/main/java/main/Main.java37
-rw-r--r--sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProvider.java40
-rw-r--r--sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProviderImpl.java53
-rw-r--r--sandbox/dougsleite/conversationTest/src/main/resources/callback.composite34
7 files changed, 272 insertions, 0 deletions
diff --git a/sandbox/dougsleite/conversationTest/src/main/java/client/Client.java b/sandbox/dougsleite/conversationTest/src/main/java/client/Client.java
new file mode 100644
index 0000000000..8a45b3ec2d
--- /dev/null
+++ b/sandbox/dougsleite/conversationTest/src/main/java/client/Client.java
@@ -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();
+}
diff --git a/sandbox/dougsleite/conversationTest/src/main/java/client/ClientCallback.java b/sandbox/dougsleite/conversationTest/src/main/java/client/ClientCallback.java
new file mode 100644
index 0000000000..140bd4ecba
--- /dev/null
+++ b/sandbox/dougsleite/conversationTest/src/main/java/client/ClientCallback.java
@@ -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);
+}
diff --git a/sandbox/dougsleite/conversationTest/src/main/java/client/ClientImpl.java b/sandbox/dougsleite/conversationTest/src/main/java/client/ClientImpl.java
new file mode 100644
index 0000000000..1dfcc4c339
--- /dev/null
+++ b/sandbox/dougsleite/conversationTest/src/main/java/client/ClientImpl.java
@@ -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();
+ }
+}
diff --git a/sandbox/dougsleite/conversationTest/src/main/java/main/Main.java b/sandbox/dougsleite/conversationTest/src/main/java/main/Main.java
new file mode 100644
index 0000000000..b39e260b87
--- /dev/null
+++ b/sandbox/dougsleite/conversationTest/src/main/java/main/Main.java
@@ -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();
+ }
+
+}
diff --git a/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProvider.java b/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProvider.java
new file mode 100644
index 0000000000..c691f74646
--- /dev/null
+++ b/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProvider.java
@@ -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();
+
+}
diff --git a/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProviderImpl.java b/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProviderImpl.java
new file mode 100644
index 0000000000..aec02b37b7
--- /dev/null
+++ b/sandbox/dougsleite/conversationTest/src/main/java/server/ServiceProviderImpl.java
@@ -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!");
+ }
+}
diff --git a/sandbox/dougsleite/conversationTest/src/main/resources/callback.composite b/sandbox/dougsleite/conversationTest/src/main/resources/callback.composite
new file mode 100644
index 0000000000..7b0e5b2b28
--- /dev/null
+++ b/sandbox/dougsleite/conversationTest/src/main/resources/callback.composite
@@ -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>