org.springframework.social.twitter.api
Interface Twitter

All Superinterfaces:
org.springframework.social.ApiBinding
All Known Implementing Classes:
TwitterTemplate

public interface Twitter
extends org.springframework.social.ApiBinding

Interface specifying a basic set of operations for interacting with Twitter. Implemented by TwitterTemplate.


Method Summary
 BlockOperations blockOperations()
          Returns the portion of the Twitter API containing the block operations.
 DirectMessageOperations directMessageOperations()
          Returns the portion of the Twitter API containing the direct message operations.
 FriendOperations friendOperations()
          Returns the portion of the Twitter API containing the friends and followers operations.
 GeoOperations geoOperations()
          Returns the portion of the Twitter API containing the geo location operations.
 ListOperations listOperations()
          Returns the portion of the Twitter API containing the user list operations.
 RestOperations restOperations()
          Returns the underlying RestOperations object allowing for consumption of Twitter endpoints that may not be otherwise covered by the API binding.
 SearchOperations searchOperations()
          Returns the portion of the Twitter API containing the search operations.
 StreamingOperations streamingOperations()
          Returns the portion of the Twitter API containing the streaming operations.
 TimelineOperations timelineOperations()
          Returns the portion of the Twitter API containing the tweet and timeline operations.
 UserOperations userOperations()
          Returns the portion of the Twitter API containing the user operations.
 
Methods inherited from interface org.springframework.social.ApiBinding
isAuthorized
 

Method Detail

blockOperations

BlockOperations blockOperations()
Returns the portion of the Twitter API containing the block operations.


directMessageOperations

DirectMessageOperations directMessageOperations()
Returns the portion of the Twitter API containing the direct message operations.


friendOperations

FriendOperations friendOperations()
Returns the portion of the Twitter API containing the friends and followers operations.


geoOperations

GeoOperations geoOperations()
Returns the portion of the Twitter API containing the geo location operations.


listOperations

ListOperations listOperations()
Returns the portion of the Twitter API containing the user list operations.


searchOperations

SearchOperations searchOperations()
Returns the portion of the Twitter API containing the search operations.


streamingOperations

StreamingOperations streamingOperations()
Returns the portion of the Twitter API containing the streaming operations.


timelineOperations

TimelineOperations timelineOperations()
Returns the portion of the Twitter API containing the tweet and timeline operations.


userOperations

UserOperations userOperations()
Returns the portion of the Twitter API containing the user operations.


restOperations

RestOperations restOperations()
Returns the underlying RestOperations object allowing for consumption of Twitter endpoints that may not be otherwise covered by the API binding. The RestOperations object returned is configured to include an OAuth "Authorization" header on all requests.