summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/samples/contribution-implementation-java-calculator/src/main/java/calculator/AddService.java
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-05-19 07:32:16 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-05-19 07:32:16 +0000
commit86d40c3ebe8bb565f99e8acf94c2d5546ed308f9 (patch)
tree4392a14011ef632ef7f488ec5882a75ccd3cf9d3 /sca-java-2.x/trunk/samples/contribution-implementation-java-calculator/src/main/java/calculator/AddService.java
parentc96250692dcb2f21fe99d8cc495649cbdc1b1cf7 (diff)
Make module name consistent with other calculator contributions. From previous discussion we're probably going to move into a sub-directory.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@946067 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/samples/contribution-implementation-java-calculator/src/main/java/calculator/AddService.java')
-rw-r--r--sca-java-2.x/trunk/samples/contribution-implementation-java-calculator/src/main/java/calculator/AddService.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/samples/contribution-implementation-java-calculator/src/main/java/calculator/AddService.java b/sca-java-2.x/trunk/samples/contribution-implementation-java-calculator/src/main/java/calculator/AddService.java
new file mode 100644
index 0000000000..188451ebac
--- /dev/null
+++ b/sca-java-2.x/trunk/samples/contribution-implementation-java-calculator/src/main/java/calculator/AddService.java
@@ -0,0 +1,28 @@
+/*
+ * 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;
+
+/**
+ * The Add service interface
+ */
+public interface AddService {
+
+ double add(double n1, double n2);
+
+}