summaryrefslogtreecommitdiffstats
path: root/java/sca/samples/spring-bigbank-calculator/src/main/resources/calculator/MultiplyServiceImpl.py
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/MultiplyServiceImpl.py
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 'java/sca/samples/spring-bigbank-calculator/src/main/resources/calculator/MultiplyServiceImpl.py')
-rw-r--r--java/sca/samples/spring-bigbank-calculator/src/main/resources/calculator/MultiplyServiceImpl.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/java/sca/samples/spring-bigbank-calculator/src/main/resources/calculator/MultiplyServiceImpl.py b/java/sca/samples/spring-bigbank-calculator/src/main/resources/calculator/MultiplyServiceImpl.py
new file mode 100644
index 0000000000..cfd96f287a
--- /dev/null
+++ b/java/sca/samples/spring-bigbank-calculator/src/main/resources/calculator/MultiplyServiceImpl.py
@@ -0,0 +1,21 @@
+# 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 multiply(n1, n2):
+ print "Python Calculator component: multiply(", n1, ",", n2, ")"
+ return n1 * n2 \ No newline at end of file