Uses of Class
org.shredzone.flattr4j.exception.FlattrException

Packages that use FlattrException
org.shredzone.flattr4j   
org.shredzone.flattr4j.connector   
org.shredzone.flattr4j.connector.impl   
org.shredzone.flattr4j.exception   
org.shredzone.flattr4j.impl   
org.shredzone.flattr4j.model   
org.shredzone.flattr4j.oauth   
 

Uses of FlattrException in org.shredzone.flattr4j
 

Methods in org.shredzone.flattr4j that throw FlattrException
 void FlattrService.click(AutoSubmission submission)
          Flattrs an AutoSubmission.
 void FlattrService.click(String url)
          Flattrs a URL.
 void FlattrService.click(ThingId thingId)
          Flattrs a Thing.
 ThingId FlattrService.create(Submission thing)
          Creates a new Thing.
 void FlattrService.delete(ThingId thingId)
          Deletes a Thing.
 List<Activity> OpenService.getActivities(UserId user, Activity.Type type)
          Returns all Activity of the given user ID.
 List<Category> OpenService.getCategories()
          Gets a list of all Flattr Category.
 List<Flattr> OpenService.getFlattrs(ThingId thing)
          Gets all Flattr most recently posted for the given thing ID.
 List<Flattr> OpenService.getFlattrs(ThingId thing, Integer count, Integer page)
          Gets all Flattr most recently posted for the given thing ID.
 List<Flattr> OpenService.getFlattrs(UserId user)
          Gets all Flattr most recently posted by the given user ID.
 List<Flattr> OpenService.getFlattrs(UserId user, Integer count, Integer page)
          Gets all Flattr most recently posted by the given user ID.
 List<Language> OpenService.getLanguages()
          Gets a list of all Flattr Language.
 List<Activity> FlattrService.getMyActivities(Activity.Type type)
          Returns all Activity of the associated user.
 List<Flattr> FlattrService.getMyFlattrs()
          Returns all Flattr submitted by the associated user.
 List<Flattr> FlattrService.getMyFlattrs(Integer count, Integer page)
          Returns all Flattr submitted by the associated user.
 User FlattrService.getMyself()
          Gets the User profile of the associated user.
 List<Thing> FlattrService.getMyThings()
          Returns all Thing submitted by the associated user.
 List<Thing> FlattrService.getMyThings(Integer count, Integer page)
          Returns all Thing submitted by the associated user.
 Thing OpenService.getThing(ThingId thingId)
          Gets a Thing for the given ThingId.
 Thing OpenService.getThingBySubmission(AutoSubmission submission)
          Gets a Thing by its autosubmit URL.
 Thing OpenService.getThingByUrl(String url)
          Gets a Thing by its registered URL.
 List<Thing> OpenService.getThings(Collection<ThingId> thingIds)
          Gets a list of Thing by a collection of thing IDs.
 List<Thing> OpenService.getThings(UserId user)
          Gets a list of Thing most recently submitted by the given user.
 List<Thing> OpenService.getThings(UserId user, Integer count, Integer page)
          Gets a list of Thing most recently submitted by the given user.
 User OpenService.getUser(UserId user)
          Gets the User profile of the given user ID.
 SearchResult OpenService.searchThings(SearchQuery query, Integer count, Integer page)
          Searches for Thing.
 void FlattrService.update(Thing thing)
          Updates a Thing.
 

Uses of FlattrException in org.shredzone.flattr4j.connector
 

Methods in org.shredzone.flattr4j.connector that throw FlattrException
 Connection Connector.create()
          Creates a new Connection for a call with request type RequestType.GET.
 Connection Connector.create(RequestType type)
          Creates a new Connection for a call with the given request type.
 Collection<FlattrObject> Connection.result()
          Invokes the call and returns a Collection of FlattrObject as response.
 FlattrObject Connection.singleResult()
          Invokes the call and returns a single FlattrObject as response.
 

Uses of FlattrException in org.shredzone.flattr4j.connector.impl
 

Methods in org.shredzone.flattr4j.connector.impl that throw FlattrException
 Connection FlattrConnector.create()
           
 Connection FlattrConnector.create(RequestType type)
           
 Collection<FlattrObject> FlattrConnection.result()
           
 FlattrObject FlattrConnection.singleResult()
           
 

Uses of FlattrException in org.shredzone.flattr4j.exception
 

Subclasses of FlattrException in org.shredzone.flattr4j.exception
 class FlattrServiceException
          This exception is used when the Flattr web service returned an error.
 class ForbiddenException
          This exception is used when the operation is forbidden.
 class NoMeansException
          This exception is thrown when the user's means are insufficient for the operation.
 class NotFoundException
          This exception is thrown when the target of the service call was not found.
 class RateLimitExceededException
          This exception is thrown when the rate limit was exceeded.
 class ValidationException
          This exception is used when an argument provided to a service call was invalid.
 

Uses of FlattrException in org.shredzone.flattr4j.impl
 

Methods in org.shredzone.flattr4j.impl that throw FlattrException
 void FlattrServiceImpl.click(AutoSubmission submission)
           
 void FlattrServiceImpl.click(String url)
           
 void FlattrServiceImpl.click(ThingId thingId)
           
 ThingId FlattrServiceImpl.create(Submission thing)
           
 void FlattrServiceImpl.delete(ThingId thingId)
           
 List<Activity> FlattrServiceImpl.getActivities(UserId user, Activity.Type type)
           
 List<Category> FlattrServiceImpl.getCategories()
           
 List<Flattr> FlattrServiceImpl.getFlattrs(ThingId thingId)
           
 List<Flattr> FlattrServiceImpl.getFlattrs(ThingId thingId, Integer count, Integer page)
           
 List<Flattr> FlattrServiceImpl.getFlattrs(UserId user)
           
 List<Flattr> FlattrServiceImpl.getFlattrs(UserId userId, Integer count, Integer page)
           
 List<Language> FlattrServiceImpl.getLanguages()
           
 List<Activity> FlattrServiceImpl.getMyActivities(Activity.Type type)
           
 List<Flattr> FlattrServiceImpl.getMyFlattrs()
           
 List<Flattr> FlattrServiceImpl.getMyFlattrs(Integer count, Integer page)
           
 User FlattrServiceImpl.getMyself()
           
 List<Thing> FlattrServiceImpl.getMyThings()
           
 List<Thing> FlattrServiceImpl.getMyThings(Integer count, Integer page)
           
 Thing FlattrServiceImpl.getThing(ThingId thingId)
           
 Thing FlattrServiceImpl.getThingBySubmission(AutoSubmission submission)
           
 Thing FlattrServiceImpl.getThingByUrl(String url)
           
 List<Thing> FlattrServiceImpl.getThings(Collection<ThingId> thingIds)
           
 List<Thing> FlattrServiceImpl.getThings(UserId user)
           
 List<Thing> FlattrServiceImpl.getThings(UserId user, Integer count, Integer page)
           
 User FlattrServiceImpl.getUser(UserId user)
           
 SearchResult FlattrServiceImpl.searchThings(SearchQuery query, Integer count, Integer page)
           
 void FlattrServiceImpl.update(Thing thing)
           
 

Uses of FlattrException in org.shredzone.flattr4j.model
 

Methods in org.shredzone.flattr4j.model that throw FlattrException
 FlattrObject Submission.toFlattrObject()
          Returns the submission as FlattrObject.
 

Uses of FlattrException in org.shredzone.flattr4j.oauth
 

Methods in org.shredzone.flattr4j.oauth that throw FlattrException
 String FlattrAuthenticator.authenticate()
          Authenticates this application against Flattr.
 String FlattrAuthenticator.authenticate(String state)
          Authenticates this application against Flattr.
 android.content.Intent AndroidAuthenticator.createAuthenticateIntent()
          Creates an Intent for forwarding the user to the Flattr web page for authentication.
 android.content.Intent AndroidAuthenticator.createAuthenticateIntent(String state)
          Creates an Intent for forwarding the user to the Flattr web page for authentication.
 AccessToken FlattrAuthenticator.fetchAccessToken(String code)
          Fetches an AccessToken that gives access to the Flattr API.
 AccessToken AndroidAuthenticator.fetchAccessToken(android.net.Uri uri)
          When the authentication was completed, your activity is resumed.
 



Copyright © 2010-2012. All Rights Reserved.