summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-integration/samples/sca/echo-binding/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'branches/sca-java-integration/samples/sca/echo-binding/src/test')
-rw-r--r--branches/sca-java-integration/samples/sca/echo-binding/src/test/java/echo/Client.java27
-rw-r--r--branches/sca-java-integration/samples/sca/echo-binding/src/test/java/echo/ClientImpl.java40
-rw-r--r--branches/sca-java-integration/samples/sca/echo-binding/src/test/java/echo/Echo.java27
-rw-r--r--branches/sca-java-integration/samples/sca/echo-binding/src/test/java/echo/EchoBindingTestCase.java47
-rw-r--r--branches/sca-java-integration/samples/sca/echo-binding/src/test/resources/EchoBinding.composite37
5 files changed, 0 insertions, 178 deletions
diff --git a/branches/sca-java-integration/samples/sca/echo-binding/src/test/java/echo/Client.java b/branches/sca-java-integration/samples/sca/echo-binding/src/test/java/echo/Client.java
deleted file mode 100644
index 46c4f760d0..0000000000
--- a/branches/sca-java-integration/samples/sca/echo-binding/src/test/java/echo/Client.java
+++ /dev/null
@@ -1,27 +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 echo;
-
-/**
- * @version $Rev$ $Date$
- */
-public interface Client {
-
- void call(String msg);
-}
diff --git a/branches/sca-java-integration/samples/sca/echo-binding/src/test/java/echo/ClientImpl.java b/branches/sca-java-integration/samples/sca/echo-binding/src/test/java/echo/ClientImpl.java
deleted file mode 100644
index f66d84cc4f..0000000000
--- a/branches/sca-java-integration/samples/sca/echo-binding/src/test/java/echo/ClientImpl.java
+++ /dev/null
@@ -1,40 +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 echo;
-
-import org.osoa.sca.annotations.Constructor;
-import org.osoa.sca.annotations.Reference;
-
-/**
- * @version $Rev$ $Date$
- */
-public class ClientImpl implements Client {
-
- private Echo echoReference;
-
- @Constructor
- public ClientImpl(@Reference(name = "echoReference", required = true) Echo echoReference) {
- this.echoReference = echoReference;
- }
-
- public void call(String msg) {
- String ret = echoReference.invoke(msg);
- System.out.println("Returned message: "+ ret);
- }
-}
diff --git a/branches/sca-java-integration/samples/sca/echo-binding/src/test/java/echo/Echo.java b/branches/sca-java-integration/samples/sca/echo-binding/src/test/java/echo/Echo.java
deleted file mode 100644
index 045609853a..0000000000
--- a/branches/sca-java-integration/samples/sca/echo-binding/src/test/java/echo/Echo.java
+++ /dev/null
@@ -1,27 +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 echo;
-
-/**
- * @version $Rev$ $Date$
- */
-public interface Echo {
-
- String invoke(String msg);
-}
diff --git a/branches/sca-java-integration/samples/sca/echo-binding/src/test/java/echo/EchoBindingTestCase.java b/branches/sca-java-integration/samples/sca/echo-binding/src/test/java/echo/EchoBindingTestCase.java
deleted file mode 100644
index 8526924253..0000000000
--- a/branches/sca-java-integration/samples/sca/echo-binding/src/test/java/echo/EchoBindingTestCase.java
+++ /dev/null
@@ -1,47 +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 echo;
-
-import junit.framework.TestCase;
-
-import org.apache.tuscany.api.SCARuntime;
-import org.osoa.sca.CompositeContext;
-import org.osoa.sca.CurrentCompositeContext;
-
-/**
- * @version $Rev$ $Date$
- */
-public class EchoBindingTestCase extends TestCase {
-
- private Client client;
-
- public void testEchoBinding() {
- client.call("foo");
- }
-
- protected void setUp() throws Exception {
- SCARuntime.start("EchoBinding.composite");
- CompositeContext context = CurrentCompositeContext.getContext();
- client = context.locateService(Client.class, "Client");
- }
-
- protected void tearDown() throws Exception {
- SCARuntime.stop();
- }
-}
diff --git a/branches/sca-java-integration/samples/sca/echo-binding/src/test/resources/EchoBinding.composite b/branches/sca-java-integration/samples/sca/echo-binding/src/test/resources/EchoBinding.composite
deleted file mode 100644
index b4e214869e..0000000000
--- a/branches/sca-java-integration/samples/sca/echo-binding/src/test/resources/EchoBinding.composite
+++ /dev/null
@@ -1,37 +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://www.osoa.org/xmlns/sca/1.0" name="echo">
-
- <service name="ClientService">
- <interface.java class="echo.Client"/>
- <binding.echo/>
- <reference>Client</reference>
- </service>
-
- <component name="Client">
- <implementation.java class="echo.ClientImpl"/>
- </component>
-
- <reference name="EchoReference" promote="Client">
- <interface.java interface="echo.Echo"/>
- <binding.echo/>
- </reference>
-
-</composite>