summaryrefslogtreecommitdiffstats
path: root/java/sca/samples/spring-bigbank-calculator/src/main/resources/calculator/SubtractServiceImpl.rb
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2008-08-07 08:47:00 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2008-08-07 08:47:00 +0000
commit75a2886dcd8953a162fc70c544bd62229a59a713 (patch)
treed01ccf2f70b21cc4078ee8a27d03dd5d18c8fb87 /java/sca/samples/spring-bigbank-calculator/src/main/resources/calculator/SubtractServiceImpl.rb
parentd601dd983c9e3d74af1e408565952ef7da6af656 (diff)
Apply patch from Ramkumar Ramalingam for TUSCANY-2520: Extending Spring Sample with SCA RMI binding
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@683554 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--java/sca/samples/spring-bigbank-calculator/src/main/resources/calculator/SubtractServiceImpl.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/java/sca/samples/spring-bigbank-calculator/src/main/resources/calculator/SubtractServiceImpl.rb b/java/sca/samples/spring-bigbank-calculator/src/main/resources/calculator/SubtractServiceImpl.rb
new file mode 100644
index 0000000000..8e7a884d41
--- /dev/null
+++ b/java/sca/samples/spring-bigbank-calculator/src/main/resources/calculator/SubtractServiceImpl.rb
@@ -0,0 +1,22 @@
+# 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.
+#
+
+def subtract(n1, n2)
+ print "Ruby Calculator subtract(", n1, ",", n2, ")\n"
+ return n1 - n2
+end \ No newline at end of file