Commit Graph

120 Commits

Author SHA1 Message Date
Mark Fisher
3423ca2dd7 renamed test to match class under test 2010-11-13 12:39:52 -05:00
Chris Beams
536fda2200 Check in Gradle-generated poms for convenience (INT-1609)
For ease of use by those (a) more familiar with Maven or (b) relying
on m2eclipse support within Eclipse/STS, generated poms are now checked
in. Changes to these files will be overwritted on subsequent gradle
builds.

Any changes to project dependencies should first be reflected in
build.gradle; then run `gradle generatePom` or simply `gradle build`
to see the change reflected in the pom(s).

Note that org.springframework.integration.ip.tcp.TcpInboundGatewayTests
currently fails when running `mvn clean test` from the root. This
problem does not manifest when running `gradle clean test`. The latter
is what's most important; Gary has been contacted to take a look at the
former.

Issues resolved:
    INT-1609, INT-1610, INT-1611
2010-11-12 23:27:32 -08:00
Oleg Zhurakousky
24521e97b9 minor polishing of Twitter before polishing the Twitter docs 2010-11-12 11:22:09 -05:00
Chris Beams
5a39dd1d24 Fix minor compiler warnings 2010-11-11 17:11:40 -08:00
Chris Beams
80f9a1404d fixup 2010-11-11 16:37:13 -08:00
Chris Beams
bd5a3d190b Merge branch 'buildSrc'
Added 'buildSrc' directory as a git submodule to be shared across
all Spring open-source projects. This eliminates the need to maintain
custom Gradle code within Spring Integration directly.

For a brief introduction to git submodules, see
    http://speirs.org/blog/2009/5/11/understanding-git-submodules.html

And of course the official documentation is at
    http://www.kernel.org/pub/software/scm/git/docs/git-submodule.html
    https://git.wiki.kernel.org/index.php/GitSubmoduleTutorial

Conflicts:
	spring-integration-twitter/src/main/java/org/springframework/integration/twitter/core/Twitter4jTemplate.java
	spring-integration-twitter/src/test/java/org/springframework/integration/twitter/inbound/SearchReceivingMessageSourceTests.java
2010-11-11 16:26:53 -08:00
Mark Fisher
c57280c173 polishing 2010-11-11 19:01:15 -05:00
Mark Fisher
ae619d95bf INT-1604 removed OutboundTweetMessageMapper and AbstractOutboundTwitterEndpointSupport, renamed TimelineSendingMessageHandler to StatusUpdatingMessageHandler 2010-11-11 18:54:20 -05:00
Mark Fisher
e02582f079 INT-1604 removed unused methods from TwitterOperations and Twitter4JTemplate, renamed 'markerId' to 'lastEnqueuedId', and now passing the 'sinceId' into subclass' pollForTweets(..) callback, and the search adapter now takes 'sinceId' into account as well 2010-11-11 18:42:28 -05:00
Mark Fisher
82ddb01cfd INT-1604 polishing 2010-11-11 18:29:05 -05:00
Mark Fisher
3524606a84 INT-1604 polishing 2010-11-11 18:25:49 -05:00
Mark Fisher
0852008d38 INT-1604 renamed outbound parser to include 'ChannelAdapter' 2010-11-11 18:14:12 -05:00
Mark Fisher
dd13faf032 INT-1604 renamed inbound parser to include 'ChannelAdapter' 2010-11-11 18:11:34 -05:00
Mark Fisher
22db707b5d INT-1604 polishing 2010-11-11 18:08:45 -05:00
Mark Fisher
373884d40d INT-1604 renamed TimelineUpdateReceivingMessageSourceTests (removed 'Update') 2010-11-11 17:56:47 -05:00
Mark Fisher
b5f57e3ddc INT-1604 encapsulation 2010-11-11 17:50:33 -05:00
Mark Fisher
4f3b887ddd INT-1604 encapsulation 2010-11-11 17:44:48 -05:00
Mark Fisher
79b8b6b8b5 INT-1604 refactored reusable polling logic into AbstractTwitterMessageSource 2010-11-11 17:21:28 -05:00
Mark Fisher
6f5719f352 INT-1604 formatting, removed e.printStackTrace 2010-11-11 16:53:48 -05:00
Mark Fisher
11912a5360 INT-1604 removed unused imports 2010-11-11 16:49:50 -05:00
Oleg Zhurakousky
d0ebcd9e6f INT-1603 removed MH prost processor from AMS 2010-11-11 16:39:08 -05:00
Oleg Zhurakousky
d1a97304a9 INT-1603 added real test in the 'ignored' for search with namespace 2010-11-11 16:11:57 -05:00
Oleg Zhurakousky
ff0d81e36b INT-1603 added namespace support for SearchInboundMessageSource 2010-11-11 15:58:07 -05:00
Oleg Zhurakousky
426c5713fd INT-1603 renamed components and methods to be more consistent 2010-11-11 15:16:46 -05:00
Oleg Zhurakousky
a2adf47992 INT-1603 added logic to separate markedId vs lastProcessedId 2010-11-11 15:10:52 -05:00
Oleg Zhurakousky
6335dd44d7 INT-1603 fixed SearchReceivingMessageSource and tests 2010-11-11 14:29:31 -05:00
Chris Beams
8cce5cdc1f Remove illegal @Override and other polishing 2010-11-11 10:39:03 -08:00
Chris Beams
ee34695bc4 Merge branch 'master' into buildSrc-extraction
Conflicts:
	spring-integration-twitter/src/main/java/org/springframework/integration/twitter/core/Twitter4jTemplate.java
2010-11-11 10:13:14 -08:00
Chris Beams
a9c70aa1e7 Synchronize with latest buildSrc updates
buildSrc updated to use latest Gradle wrapper.  See buildSrc git log
for complete details; in short, eclipse JDT prefs are now auto-generated
and the gradle daemon is no longer 'on by default', but must be enabled
with --daemon or -Dorg.gradle.daemon=true.

* removed all existing jdt preferences files in favor of auto-generation.

* removed .springBeans from .gitignore; this file should be
  source-controlled for consistency and convenience.

* removed illegal @Override annotations.  Eclipse/STS now catch these
  properly!
2010-11-11 10:04:20 -08:00
Oleg Zhurakousky
fa135f9c6c INT-1603 added SearchReceivingMessageSource 2010-11-11 12:58:05 -05:00
Oleg Zhurakousky
800d5e6617 INT-1603 added test for search to Twitter4JTemplateTest 2010-11-11 11:33:02 -05:00
Oleg Zhurakousky
bfd9a84832 INT-1603 first round of changes to introduce search methods to TwitterOperation and Twiter4JTemplate as well as allign TwitterOperation with its counterpart in Spring Social. Also copied SearchResult from Spring Social 2010-11-11 11:03:58 -05:00
Oleg Zhurakousky
8c63cc003a INT-1602 changed to receive HOME Timeline updates instead of Friends 2010-11-11 10:07:59 -05:00
Oleg Zhurakousky
834f6ca265 INT-1600 polished namespace elements t be more consistent 2010-11-11 09:54:02 -05:00
Chris Beams
bd3b0222f3 Add Bundle-Version and placeholder to all Bundlor templates 2010-11-09 10:33:14 -08:00
Oleg Zhurakousky
1278666ed7 INT-1596, fixed the broken links as well as all warnings 2010-11-09 12:17:45 -05:00
Oleg Zhurakousky
9bf9358e5a INT-1564 added exception translation logic to TwitterOperationException for better display to the end user, added tests 2010-11-08 22:32:45 -05:00
Oleg Zhurakousky
2a8994d7b6 INT-1553 Final modifications to align with Spring Social API, added tests for persistent metadatastore, tested every supported twiter function against the real twitter account 2010-11-08 18:12:15 -05:00
Oleg Zhurakousky
59a15d6177 INT-1553 third round of refactoring to align with Spring Social, removed direct dependency on Paging, modified and enhanced a few tests 2010-11-08 16:13:52 -05:00
Oleg Zhurakousky
49fc149e63 INT-1553 second round of refatcoting to align with Spring Social, removed direct dependency on RateLimit 2010-11-08 15:19:26 -05:00
Oleg Zhurakousky
71e656943b INT-1553 first round of refactoring to introduce dependency on Tweet from Spring Social 2010-11-08 14:58:42 -05:00
Oleg Zhurakousky
630fb24972 INT-1553 fixed the schema, renamed twitter-connection to twitter-template, fixed tests 2010-11-08 13:02:00 -05:00
Oleg Zhurakousky
8d280e4a99 INT-1553 polishing, added more tests for status update, code coverage is at 76% 2010-11-08 12:31:39 -05:00
Oleg Zhurakousky
c5b072b2a8 INT-1553 removed ConnectionParser, added tests for Twitter4JTemplate 2010-11-08 12:03:04 -05:00
Oleg Zhurakousky
79b7342ad9 INT-1553 removed twitter-connection from the namespace 2010-11-08 09:08:23 -05:00
Oleg Zhurakousky
56143b63aa INT-1553 initial refactoring to introduce Twitter4jTemplate in place of the twitter-connection 2010-11-08 09:03:44 -05:00
Oleg Zhurakousky
16458de1f5 INT-1553, more polishing on Twitter 2010-11-06 08:11:11 -04:00
Oleg Zhurakousky
ae2413e68a INT-1553, added more test for the Inbound side 2010-11-05 17:17:49 -04:00
Oleg Zhurakousky
387c2979be INT-1553, fixed more tests, added new loguc to build metadataKey in the inbound adapters, tested new Twitter connectivity with real account 2010-11-05 16:01:55 -04:00
Oleg Zhurakousky
fae066e48e INT-1553, Initial overhaul and simplification to the OAuth package, tests 2010-11-05 15:35:02 -04:00