From 086ec70bfc8d18c4d7f489b4ecd5371b64805a2d Mon Sep 17 00:00:00 2001 From: antelder Date: Wed, 6 Oct 2010 10:42:30 +0000 Subject: Rename trunk/contrib to trunk/unreleased git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1004981 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/main/java/calculator/AddService.java | 31 ++++++++++++ .../src/main/java/calculator/AddServiceImpl.java | 30 ++++++++++++ .../src/main/resources/Add.composite | 30 ++++++++++++ .../main/resources/META-INF/sca-contribution.xml | 23 +++++++++ .../src/test/java/calculator/AddTestCase.java | 56 ++++++++++++++++++++++ 5 files changed, 170 insertions(+) create mode 100644 sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src/main/java/calculator/AddService.java create mode 100644 sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src/main/java/calculator/AddServiceImpl.java create mode 100644 sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src/main/resources/Add.composite create mode 100644 sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src/main/resources/META-INF/sca-contribution.xml create mode 100644 sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src/test/java/calculator/AddTestCase.java (limited to 'sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src') diff --git a/sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src/main/java/calculator/AddService.java b/sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src/main/java/calculator/AddService.java new file mode 100644 index 0000000000..c7e6383559 --- /dev/null +++ b/sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src/main/java/calculator/AddService.java @@ -0,0 +1,31 @@ +/* + * 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 calculator; + +import org.oasisopen.sca.annotation.Remotable; + +/** + * The interface for the add service + */ +@Remotable +public interface AddService { + + double add(double n1, double n2); + +} diff --git a/sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src/main/java/calculator/AddServiceImpl.java b/sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src/main/java/calculator/AddServiceImpl.java new file mode 100644 index 0000000000..e9c635e3c8 --- /dev/null +++ b/sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src/main/java/calculator/AddServiceImpl.java @@ -0,0 +1,30 @@ +/* + * 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 calculator; + +/** + * An implementation of the Add service + */ +public class AddServiceImpl implements AddService { + + public double add(double n1, double n2) { + return n1 + n2; + } + +} diff --git a/sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src/main/resources/Add.composite b/sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src/main/resources/Add.composite new file mode 100644 index 0000000000..a452c24141 --- /dev/null +++ b/sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src/main/resources/Add.composite @@ -0,0 +1,30 @@ + + + + + + + + + diff --git a/sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src/main/resources/META-INF/sca-contribution.xml b/sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src/main/resources/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..37e304ac4d --- /dev/null +++ b/sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src/main/resources/META-INF/sca-contribution.xml @@ -0,0 +1,23 @@ + + + + + \ No newline at end of file diff --git a/sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src/test/java/calculator/AddTestCase.java b/sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src/test/java/calculator/AddTestCase.java new file mode 100644 index 0000000000..b7baf9b64b --- /dev/null +++ b/sca-java-2.x/trunk/unreleased/samples/domain/distributed-calculator/contribution-add/src/test/java/calculator/AddTestCase.java @@ -0,0 +1,56 @@ +/* + * 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 calculator; + +import static org.junit.Assert.assertEquals; + +import java.rmi.Naming; + +import org.apache.tuscany.sca.node.Contribution; +import org.apache.tuscany.sca.node.ContributionLocationHelper; +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; + +/** + * This shows how to test the Calculator service component. + */ +public class AddTestCase { + + private static Node node; + private static AddService addService; + + @BeforeClass + public static void setUp() throws Exception { + addService = new AddServiceImpl(); + } + + @AfterClass + public static void tearDown() throws Exception { + + } + + @Test + public void testCalculator() throws Exception { + // Calculate + assertEquals(addService.add(3, 2), 5.0, 0.0); + } +} -- cgit v1.2.3