Methods Summary |
---|
public void | close()will close the Service - service should not be used after this method has been called
|
public abstract com.google.gdata.data.BaseEntry | createEntry(GDataRequest request, GDataResponse response)Service method to create an entry in an already created and existing
feed. This method will create the entry and passes the entry to the
indexing component to make the new entry accessable via get-queries.
The response and the corresponding http status code will be added to the
given FeedResponse .
|
public abstract com.google.gdata.data.BaseEntry | deleteEntry(GDataRequest request, GDataResponse response)Service Method to delete an entry specified in the given FeedRequest.
This method will remove the entry permanently. There will be no
possiblity to restore the entry. The response and the corresponding http
status code will be added to the given FeedResponse .
|
public abstract java.util.Date | getEntryLastModified(java.lang.String entryId, java.lang.String feedId)Retruns the date of the last modification for the given entry id
|
public abstract com.google.gdata.data.BaseFeed | getFeed(GDataRequest request, GDataResponse response)Service method to retrieve a requested Feed. The feed will also be added to
the given FeedResponse instance and can also be accessed
via the FeedResponse object.
|
public abstract java.util.Date | getFeedLastModified(java.lang.String feedId)Retruns the date of the last modification for the given feed id
|
public abstract com.google.gdata.data.BaseEntry | getSingleEntry(GDataRequest request, GDataResponse response)Service method to retrieve a requested entry. The entry will also be added to
the given FeedResponse instance and can also be accessed
via the FeedResponse object.
|
public abstract com.google.gdata.data.BaseEntry | updateEntry(GDataRequest request, GDataResponse response)Service method to update an existing entry in a existing feed context.
The entry version will be checked and a ServiceException
will be thrown if the version to update is outdated. The new entry will
be passed to the indexing component to make the version accessable via
get-queries.
|