diff options
author | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2009-09-15 16:59:54 +0000 |
---|---|---|
committer | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2009-09-15 16:59:54 +0000 |
commit | b40f16ed28c608b954e9f2a61644f6c50c1a0d82 (patch) | |
tree | b0cc25b0b33e2431522e3db6dc5ee400f662e84d /sandbox/travelsample/contributions/blog-feed/src/main/resources/blog-feed.composite | |
parent | 5ed1f1297a26976e1b2e81fdcd34a62b21065766 (diff) |
Apply new naming convention to contributions/blog-feed and launchers/blog-feed
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@815397 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/travelsample/contributions/blog-feed/src/main/resources/blog-feed.composite')
-rw-r--r-- | sandbox/travelsample/contributions/blog-feed/src/main/resources/blog-feed.composite | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/sandbox/travelsample/contributions/blog-feed/src/main/resources/blog-feed.composite b/sandbox/travelsample/contributions/blog-feed/src/main/resources/blog-feed.composite index 1c9cd044b3..751fd33cd2 100644 --- a/sandbox/travelsample/contributions/blog-feed/src/main/resources/blog-feed.composite +++ b/sandbox/travelsample/contributions/blog-feed/src/main/resources/blog-feed.composite @@ -19,9 +19,8 @@ -->
<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.0"
- targetNamespace="http://goodvaluetrips.com/"
- name="blog-feed">
-
+ targetNamespace="http://tuscanyscatours.com/"
+ name="blogFeed">
<!-- Example that shows using the Tuscany Data APIs to create a feed that -->
<!-- is independent of the Feed API -->
@@ -34,7 +33,7 @@ </service>
<component name="BlogFeed">
- <implementation.java class="scatours.blog.feed.GenericBlogFeedImpl"/>
+ <implementation.java class="com.tuscanyscatours.blog.feed.impl.GenericBlogFeedImpl"/>
</component>
<!-- Example that shows using the Atom Collections API to create a feed that -->
@@ -44,7 +43,7 @@ </service>
<component name="BlogAtom">
- <implementation.java class="scatours.blog.feed.AtomBlogFeedImpl"/>
+ <implementation.java class="com.tuscanyscatours.blog.feed.impl.AtomBlogFeedImpl"/>
</component>
<!-- Example that shows using the RSS Collections API to create a feed that -->
@@ -54,6 +53,6 @@ </service>
<component name="BlogRSS">
- <implementation.java class="scatours.blog.feed.RSSBlogFeedImpl"/>
+ <implementation.java class="com.tuscanyscatours.blog.feed.impl.RSSBlogFeedImpl"/>
</component>
</composite>
|