summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/samples/loan-python/loan.composite
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sca-cpp/trunk/samples/loan-python/loan.composite9
1 files changed, 4 insertions, 5 deletions
diff --git a/sca-cpp/trunk/samples/loan-python/loan.composite b/sca-cpp/trunk/samples/loan-python/loan.composite
index 0e64b5bf44..9052737cf0 100644
--- a/sca-cpp/trunk/samples/loan-python/loan.composite
+++ b/sca-cpp/trunk/samples/loan-python/loan.composite
@@ -18,19 +18,18 @@
* under the License.
-->
<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200912"
- xmlns:t="http://tuscany.apache.org/xmlns/sca/1.1"
targetNamespace="http://store"
name="store">
<component name="LoanApprovalUI">
- <t:implementation.widget/>
+ <implementation.widget/>
<reference name="loanApproval" target="LoanApproval"/>
</component>
<component name="LoanApproval">
- <t:implementation.python script="loan-approval.py"/>
+ <implementation.python script="loan-approval.py"/>
<service name="LoanApproval">
- <t:binding.atom uri="loan-approval"/>
+ <binding.atom uri="loan-approval"/>
</service>
<reference name="cache" target="Cache"/>
</component>
@@ -38,7 +37,7 @@
<component name="Cache">
<implementation.cpp path="../../components/cache" library="libmemcache"/>
<service name="Cache">
- <t:binding.atom uri="cache"/>
+ <binding.atom uri="cache"/>
</service>
<property name="servers">localhost:11211</property>
</component>