summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/contrib/samples/callback/src
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-02-10 08:38:40 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-02-10 08:38:40 +0000
commitd64d4281ec5636ffc7511cc94fcc3171f34bb805 (patch)
tree6cb9b2bde8c367b43e2cf7036ad64e28dfd7fefd /sca-java-2.x/contrib/samples/callback/src
parentddce09144c53a0edd85f5929605cd3d3191d4ea4 (diff)
Rename these old samples in contrib
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1069273 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/contrib/samples/callback/src')
-rw-r--r--sca-java-2.x/contrib/samples/callback/src/main/java/sample/StockCallback.java29
-rw-r--r--sca-java-2.x/contrib/samples/callback/src/main/java/sample/StockClient.java24
-rw-r--r--sca-java-2.x/contrib/samples/callback/src/main/java/sample/StockClientImpl.java46
-rw-r--r--sca-java-2.x/contrib/samples/callback/src/main/java/sample/StockService.java28
-rw-r--r--sca-java-2.x/contrib/samples/callback/src/main/java/sample/StockServiceImpl.java48
-rw-r--r--sca-java-2.x/contrib/samples/callback/src/main/resources/callback.composite34
-rw-r--r--sca-java-2.x/contrib/samples/callback/src/test/java/sample/SCTestCase.java35
7 files changed, 0 insertions, 244 deletions
diff --git a/sca-java-2.x/contrib/samples/callback/src/main/java/sample/StockCallback.java b/sca-java-2.x/contrib/samples/callback/src/main/java/sample/StockCallback.java
deleted file mode 100644
index 82a52049a9..0000000000
--- a/sca-java-2.x/contrib/samples/callback/src/main/java/sample/StockCallback.java
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * 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 sample;
-
-import org.oasisopen.sca.annotation.Remotable;
-
-@Remotable
-public interface StockCallback {
-
- void valueCallback(String v);
-
-}
diff --git a/sca-java-2.x/contrib/samples/callback/src/main/java/sample/StockClient.java b/sca-java-2.x/contrib/samples/callback/src/main/java/sample/StockClient.java
deleted file mode 100644
index ed6c138fc0..0000000000
--- a/sca-java-2.x/contrib/samples/callback/src/main/java/sample/StockClient.java
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * 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 sample;
-
-public interface StockClient {
- void doit();
-}
diff --git a/sca-java-2.x/contrib/samples/callback/src/main/java/sample/StockClientImpl.java b/sca-java-2.x/contrib/samples/callback/src/main/java/sample/StockClientImpl.java
deleted file mode 100644
index 51b33d046e..0000000000
--- a/sca-java-2.x/contrib/samples/callback/src/main/java/sample/StockClientImpl.java
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * 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 sample;
-
-import org.oasisopen.sca.annotation.EagerInit;
-import org.oasisopen.sca.annotation.Init;
-import org.oasisopen.sca.annotation.Reference;
-import org.oasisopen.sca.annotation.Scope;
-
-@EagerInit
-@Scope("COMPOSITE")
-public class StockClientImpl implements StockClient, StockCallback {
-
- @Reference
- public StockService service;
-
- @Override
- @Init
- public void doit() {
- String x = service.getValue("foo");
- System.out.println("doit: " + x);
- }
-
- @Override
- public void valueCallback(String v) {
- System.out.println("StockClientImpl.valueCallback: " + v);
- }
-
-}
diff --git a/sca-java-2.x/contrib/samples/callback/src/main/java/sample/StockService.java b/sca-java-2.x/contrib/samples/callback/src/main/java/sample/StockService.java
deleted file mode 100644
index 2ac90d429d..0000000000
--- a/sca-java-2.x/contrib/samples/callback/src/main/java/sample/StockService.java
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * 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 sample;
-
-import org.oasisopen.sca.annotation.Callback;
-import org.oasisopen.sca.annotation.Remotable;
-
-@Remotable
-@Callback(StockCallback.class)
-public interface StockService {
- String getValue(String symbol);
-}
diff --git a/sca-java-2.x/contrib/samples/callback/src/main/java/sample/StockServiceImpl.java b/sca-java-2.x/contrib/samples/callback/src/main/java/sample/StockServiceImpl.java
deleted file mode 100644
index a98a6c5ce1..0000000000
--- a/sca-java-2.x/contrib/samples/callback/src/main/java/sample/StockServiceImpl.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * 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 sample;
-
-import org.oasisopen.sca.annotation.Callback;
-
-public class StockServiceImpl implements StockService {
-
- @Callback
- public StockCallback callback;
-
- public String getValue(String symbol) {
-
- Runnable r = new Runnable() {
- public void run() {
- while (true) {
- callback.valueCallback("bla");
- try {
- Thread.sleep(1000);
- } catch (InterruptedException e) {
- e.printStackTrace();
- }
- }
- }
- };
- Thread t = new Thread(r);
- t.start();
-
- return "x";
- }
-
-}
diff --git a/sca-java-2.x/contrib/samples/callback/src/main/resources/callback.composite b/sca-java-2.x/contrib/samples/callback/src/main/resources/callback.composite
deleted file mode 100644
index 02ac4ae410..0000000000
--- a/sca-java-2.x/contrib/samples/callback/src/main/resources/callback.composite
+++ /dev/null
@@ -1,34 +0,0 @@
-<?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://docs.oasis-open.org/ns/opencsa/sca/200912"
- xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.1"
- targetNamespace="http://samples"
- name="Stock">
-
- <component name="StockComponent">
- <implementation.java class="sample.StockServiceImpl"/>
- </component>
-
- <component name="StockClient">
- <implementation.java class="sample.StockClientImpl"/>
- <reference name="service" target="StockComponent" />
- </component>
-
-</composite>
diff --git a/sca-java-2.x/contrib/samples/callback/src/test/java/sample/SCTestCase.java b/sca-java-2.x/contrib/samples/callback/src/test/java/sample/SCTestCase.java
deleted file mode 100644
index 40c3a631fc..0000000000
--- a/sca-java-2.x/contrib/samples/callback/src/test/java/sample/SCTestCase.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * 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 sample;
-
-import org.apache.tuscany.sca.node.Node;
-import org.apache.tuscany.sca.node.NodeFactory;
-import org.junit.Test;
-
-public class SCTestCase {
-
- @Test
- public void test1() throws InterruptedException {
- Node node = NodeFactory.newInstance().createNode("callback.composite", new String[]{"target/classes"});
- node.start();
- Thread.sleep(10000);
- node.stop();
- }
-}