summaryrefslogtreecommitdiffstats
path: root/java/sca/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/OSGI-INF/blueprint/operations-module.xml
diff options
context:
space:
mode:
authorrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-03-26 21:51:19 +0000
committerrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-03-26 21:51:19 +0000
commit2cfaa019301b7a1504302b4cc0aed3489240dbd4 (patch)
tree0029edbc7d1d010b7c9628c281303b1858adbbbc /java/sca/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/OSGI-INF/blueprint/operations-module.xml
parentcd25ce740734fe56b06da64ceea48fcb6dccdbc7 (diff)
Refactor the internal classes into the impl packages
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@758877 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/OSGI-INF/blueprint/operations-module.xml')
-rw-r--r--java/sca/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/OSGI-INF/blueprint/operations-module.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/java/sca/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/OSGI-INF/blueprint/operations-module.xml b/java/sca/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/OSGI-INF/blueprint/operations-module.xml
index 6410b55129..f6b5f4690e 100644
--- a/java/sca/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/OSGI-INF/blueprint/operations-module.xml
+++ b/java/sca/modules/node-impl-osgi/src/test/resources/calculator/dosgi/operations/OSGI-INF/blueprint/operations-module.xml
@@ -19,13 +19,13 @@
-->
<!-- A sample module-context.xml for OSGI RFC 124 (BluePrint Service) -->
<components xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
- <component id="AddComponent" class="calculator.dosgi.operations.AddServiceImpl">
+ <component id="AddComponent" class="calculator.dosgi.operations.impl.AddServiceImpl">
</component>
- <component id="SubtractComponent" class="calculator.dosgi.operations.SubtractServiceImpl">
+ <component id="SubtractComponent" class="calculator.dosgi.operations.impl.SubtractServiceImpl">
</component>
- <component id="MultiplyComponent" class="calculator.dosgi.operations.MultiplyServiceImpl">
+ <component id="MultiplyComponent" class="calculator.dosgi.operations.impl.MultiplyServiceImpl">
</component>
- <component id="DivideComponent" class="calculator.dosgi.operations.DivideServiceImpl">
+ <component id="DivideComponent" class="calculator.dosgi.operations.impl.DivideServiceImpl">
</component>
<!-- We can derive the SCA services for the implementation.osgi -->