summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove all conversational related code from SCA API and code that uses it as ↵antelder2009-06-2239-2230/+9
| | | | | | per the public review spec's git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@787158 13f79535-47bb-0310-9956-ffa450edef68
* Added missing runtime dependency on tuscany-host-webapp to get the SCA ↵mcombellack2009-06-211-0/+7
| | | | | | taglib (sca.tld) git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@787096 13f79535-47bb-0310-9956-ffa450edef68
* Added Eclipse maven-eclipse.xml project file to the SVN ignore listmcombellack2009-06-210-0/+0
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@787091 13f79535-47bb-0310-9956-ffa450edef68
* Added modules feed-logger-contribution and feed-logger-launcher to the buildmcombellack2009-06-212-0/+2
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@787066 13f79535-47bb-0310-9956-ffa450edef68
* Launcher that can be used to run the feed logger contributionmcombellack2009-06-213-0/+152
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@787063 13f79535-47bb-0310-9956-ffa450edef68
* Feed logger contribution that demonstrates how the Atom and RSS bindings can ↵mcombellack2009-06-215-0/+270
| | | | | | be used to log entries from Atom and RSS feeds git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@787062 13f79535-47bb-0310-9956-ffa450edef68
* Updated the launcher to display the additional URLs that can be used to ↵mcombellack2009-06-211-0/+5
| | | | | | access the feeds git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786997 13f79535-47bb-0310-9956-ffa450edef68
* Updated the application so that it uses the Tuscany Data API for creating ↵mcombellack2009-06-216-58/+378
| | | | | | | | the blog feeds so that we can add both an Atom and RSS feed onto the same Java component implementation. For completeness, added implementations that extend the Collections interfaces for the Atom and RSS bindings to show it can be done that way too but the implementation code cannot support both bindings at the same time git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786996 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3114 - Added a basic get test for the RSS feedmcombellack2009-06-213-2/+69
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786990 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3113 - Added get() method to the rss.Collections interface as this ↵mcombellack2009-06-212-0/+21
| | | | | | is the method that the RSSBindingListenerServlet class is looking for to see if the Java component implementation class supports RSS feeds. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786986 13f79535-47bb-0310-9956-ffa450edef68
* Binding RSS tests should not depend on classes from the Atom APImcombellack2009-06-211-2/+1
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786964 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3112 - Make sure that the feed entry has the links set on it ↵mcombellack2009-06-211-0/+1
| | | | | | otherwise the title of the item in the RSS feed will not be converted to a URL git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786961 13f79535-47bb-0310-9956-ffa450edef68
* Tidy code in Payment component implementationslaws2009-06-212-38/+16
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786960 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3111 - It looks like an RSS feed needs a feed description otherwise ↵mcombellack2009-06-211-0/+1
| | | | | | it throws a FeedException. Added a description to avoid this problem git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786958 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3111 - Fixed NPE when using the RSS binding on a Java component ↵mcombellack2009-06-211-10/+11
| | | | | | implementation that does not implement the org.apache.tuscany.sca.binding.rss.collection.Collections interface git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786955 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3310 - Updated the atom binding so that the description can be set ↵mcombellack2009-06-206-6/+57
| | | | | | using the description attribute. This is similar to the way that we set the title of the feed using the title attribute git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786928 13f79535-47bb-0310-9956-ffa450edef68
* Added a unit test for checking that the title can be set for an Atom feed ↵mcombellack2009-06-202-10/+39
| | | | | | using the title attribute of binding.atom git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786924 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3109 Added null check for getOperation to handle case where the feed ↵mcombellack2009-06-201-9/+10
| | | | | | Java component implementation does not have a get() method but does define a getAll() method. This fixes TUSCANY-3109 git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786917 13f79535-47bb-0310-9956-ffa450edef68
* TUSCANY-3109 - Added unit test for using Atom binding on a Java component ↵mcombellack2009-06-203-0/+242
| | | | | | implementation class that does not have a get() method git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786914 13f79535-47bb-0310-9956-ffa450edef68
* Issue: NullPointerException will be thrown in the destory methods if the ↵mcombellack2009-06-208-30/+51
| | | | | | | | domains fail to initialise because the destroy method attempts to close the domain but the domain is null. Fix: Added check for null before attempting to close the domain git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786907 13f79535-47bb-0310-9956-ffa450edef68
* Removed stray commented out @Ignore(TUSCANY-2939) on a test as TUSCANY-2939 ↵mcombellack2009-06-201-1/+0
| | | | | | is fixed and the test runs without issue git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786906 13f79535-47bb-0310-9956-ffa450edef68
* Removed unused importmcombellack2009-06-201-1/+0
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786904 13f79535-47bb-0310-9956-ffa450edef68
* Updated the SVN ignores to ignore the Eclipse project filesmcombellack2009-06-200-0/+0
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786903 13f79535-47bb-0310-9956-ffa450edef68
* Updated the SVN ignores to ignore the maven-eclipse.xml file as this is a ↵mcombellack2009-06-200-0/+0
| | | | | | generated Eclipse project file git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786902 13f79535-47bb-0310-9956-ffa450edef68
* Updated the SVN ignores to ignore the Eclipse project filesmcombellack2009-06-200-0/+0
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786901 13f79535-47bb-0310-9956-ffa450edef68
* Improved the readability of the code that generates the next blog ID.mcombellack2009-06-201-2/+12
| | | | | | Fixed a spelling mistake in the word Tuscany. I should know how to spell it by now :-) git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786847 13f79535-47bb-0310-9956-ffa450edef68
* Rename the "transactionFeeRate" to be "transactionFee" as I don't know what ↵slaws2009-06-202-3/+5
| | | | | | the "rate" part means. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786842 13f79535-47bb-0310-9956-ffa450edef68
* Added blog-feed-contribution and blog-feed-launcher to the buildmcombellack2009-06-202-0/+2
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786841 13f79535-47bb-0310-9956-ffa450edef68
* Fixed dependency issue that caused compilation issues when built via Maven ↵mcombellack2009-06-201-2/+6
| | | | | | but not when run inside Eclipse git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786840 13f79535-47bb-0310-9956-ffa450edef68
* Added launcher for the SCA Tours blog feed contributionmcombellack2009-06-202-0/+122
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786835 13f79535-47bb-0310-9956-ffa450edef68
* Added new contribution that contains an RSS and Atom feed to an imaginary ↵mcombellack2009-06-204-0/+275
| | | | | | SCA Tours blog git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786834 13f79535-47bb-0310-9956-ffa450edef68
* Removed unused importmcombellack2009-06-201-1/+0
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786824 13f79535-47bb-0310-9956-ffa450edef68
* Change currency converter request to exchange rate request slaws2009-06-201-2/+2
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786822 13f79535-47bb-0310-9956-ffa450edef68
* Originally, this file contained a mix of using spaces and tabs to do the ↵mcombellack2009-06-201-30/+31
| | | | | | | | indentation. This resulted in the indentation not being right in various places. To improve readability, I have replaced all tabs with spaces (to make it consistent across the file) and sorted out the indentation problems git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786799 13f79535-47bb-0310-9956-ffa450edef68
* Re-enabled test that had been marked as @Ignore since TUSCANY-2937 is now ↵mcombellack2009-06-201-2/+1
| | | | | | fixed and the test runs git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786797 13f79535-47bb-0310-9956-ffa450edef68
* Minor editorial corrections to fix spelling and indentationmcombellack2009-06-201-4/+4
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786795 13f79535-47bb-0310-9956-ffa450edef68
* Fixed minor spelling mistakemcombellack2009-06-201-1/+1
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786794 13f79535-47bb-0310-9956-ffa450edef68
* Corrected the uri of the export.resourcemcombellack2009-06-201-1/+1
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786783 13f79535-47bb-0310-9956-ffa450edef68
* Added the help-pages-contribution and help-pages-launcher modules to the buildmcombellack2009-06-202-0/+2
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786780 13f79535-47bb-0310-9956-ffa450edef68
* Added a launcher for the SCA Tours help pagesmcombellack2009-06-202-0/+122
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786775 13f79535-47bb-0310-9956-ffa450edef68
* Added help pages contribution that uses implementation.resource with a ↵mcombellack2009-06-207-0/+286
| | | | | | binding.http to expose some sample help pages for SCA Tours git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786774 13f79535-47bb-0310-9956-ffa450edef68
* Merge r786047 from m3 branch to trunk to update the doc files for the M3 releaseantelder2009-06-201-3/+3
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786764 13f79535-47bb-0310-9956-ffa450edef68
* Merge r786047 from m3 branch to trunk to update the doc files for the M3 releaseantelder2009-06-201-2/+3
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786763 13f79535-47bb-0310-9956-ffa450edef68
* Merge r786047 from m3 branch to trunk to update the doc files for the M3 releaseantelder2009-06-201-2/+2
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786762 13f79535-47bb-0310-9956-ffa450edef68
* Merge r786047 from m3 branch to trunk to update the doc files for the M3 releaseantelder2009-06-200-0/+0
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786761 13f79535-47bb-0310-9956-ffa450edef68
* Made the indentation and spacing consistent across the composite filemcombellack2009-06-191-2/+2
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786651 13f79535-47bb-0310-9956-ffa450edef68
* Removed some empty directoriesmcombellack2009-06-190-0/+0
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786646 13f79535-47bb-0310-9956-ffa450edef68
* Minor spelling correctionmcombellack2009-06-191-1/+1
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786643 13f79535-47bb-0310-9956-ffa450edef68
* Only unregister the MBean if it's registeredrfeng2009-06-192-7/+25
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786621 13f79535-47bb-0310-9956-ffa450edef68
* Make the remote flag consistent in names and setters/gettersrfeng2009-06-197-27/+52
| | | | git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@786602 13f79535-47bb-0310-9956-ffa450edef68