From a954d454b68a938cd26b32b346b3ca55494c5dd9 Mon Sep 17 00:00:00 2001 From: antelder Date: Thu, 10 Feb 2011 08:53:08 +0000 Subject: Remove samples subfolder as its now in contrib and unreleased git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1069285 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/test/java/helloworld/HelloWorldClient.java | 33 -------------- .../src/test/java/helloworld/HelloWorldImpl.java | 28 ------------ .../test/java/helloworld/HelloWorldService.java | 28 ------------ .../src/test/java/test/SampleBindingTestCase.java | 52 ---------------------- .../src/test/resources/helloworld.composite | 39 ---------------- 5 files changed, 180 deletions(-) delete mode 100644 sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldClient.java delete mode 100644 sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldImpl.java delete mode 100644 sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldService.java delete mode 100644 sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test/java/test/SampleBindingTestCase.java delete mode 100644 sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test/resources/helloworld.composite (limited to 'sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test') diff --git a/sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldClient.java b/sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldClient.java deleted file mode 100644 index bafb453a30..0000000000 --- a/sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldClient.java +++ /dev/null @@ -1,33 +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 helloworld; - -import org.oasisopen.sca.annotation.Reference; - -public class HelloWorldClient implements HelloWorldService { - - @Reference - public HelloWorldService ref; - - public String sayHello(String name) { - return ref.sayHello(name); - } - -} diff --git a/sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldImpl.java b/sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldImpl.java deleted file mode 100644 index 98989e6e49..0000000000 --- a/sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldImpl.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 helloworld; - - -public class HelloWorldImpl implements HelloWorldService { - - public String sayHello(String name) { - return "Hello " + name; - } - -} diff --git a/sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldService.java b/sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldService.java deleted file mode 100644 index 59b4bd0d57..0000000000 --- a/sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldService.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 helloworld; - -import org.oasisopen.sca.annotation.Remotable; - -@Remotable -public interface HelloWorldService { - - String sayHello(String name); - -} diff --git a/sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test/java/test/SampleBindingTestCase.java b/sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test/java/test/SampleBindingTestCase.java deleted file mode 100644 index f3274a7fcb..0000000000 --- a/sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test/java/test/SampleBindingTestCase.java +++ /dev/null @@ -1,52 +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 test; - -import helloworld.HelloWorldService; -import junit.framework.Assert; - -import org.apache.tuscany.sca.node.Node; -import org.apache.tuscany.sca.node.NodeFactory; -import org.junit.AfterClass; -import org.junit.BeforeClass; -import org.junit.Test; - -public class SampleBindingTestCase { - - private static Node node; - - @Test - public void testSayHello() { - HelloWorldService service = node.getService(HelloWorldService.class, "HelloWorldClient/HelloWorldService"); - Assert.assertEquals("Hello boo", service.sayHello("boo")); - } - - @BeforeClass - public static void init() throws Exception { - node = NodeFactory.newInstance().createNode("helloworld.composite").start(); - } - - @AfterClass - public static void destroy() throws Exception { - if (node != null) { - node.stop(); - } - } - -} diff --git a/sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test/resources/helloworld.composite b/sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test/resources/helloworld.composite deleted file mode 100644 index 9bb69bae65..0000000000 --- a/sca-java-2.x/trunk/samples/extending-tuscany/binding-sample/src/test/resources/helloworld.composite +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - -- cgit v1.2.3