|
GData JavaScript Client 1.7 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Object | +--google.gdata.client.Service | +--google.gdata.client.GoogleService | +--google.gdata.gbase.GoogleBaseService
Google Base service.
Defined in gdata.js
Field Summary | |
<static> <final> {string} |
SERVICE_NAME
Google Base service name. |
Fields inherited from class google.gdata.client.Service |
serviceName, applicationName
|
Constructor Summary | |
google.gdata.gbase.GoogleBaseService(<string> applicationName)
Constructor. |
Method Summary | |
google.gdata.gbase.AttributesEntry
|
getAttributesEntry(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves a Google Base attribute entry. |
google.gdata.gbase.AttributesFeed
|
getAttributesFeed(<string|google.gdata.gbase.AttributesQuery> uriOrQuery, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves the feed of public attributes. |
google.gdata.gbase.ItemsEntry
|
getItemsEntry(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves a Google Base item entry. |
google.gdata.gbase.ItemsFeed
|
getItemsFeed(<string|google.gdata.gbase.ItemsQuery> uriOrQuery, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves the feed of a user's private items. |
google.gdata.gbase.ItemTypesEntry
|
getItemTypesEntry(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves a Google Base item type entry. |
google.gdata.gbase.ItemTypesFeed
|
getItemTypesFeed(<string|google.gdata.gbase.ItemTypesQuery> uriOrQuery, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves the feed of public item types. |
google.gdata.gbase.LocalesEntry
|
getLocalesEntry(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves a Google Base locale entry. |
google.gdata.gbase.LocalesFeed
|
getLocalesFeed(<string|google.gdata.gbase.LocalesQuery> uriOrQuery, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves the feed of locales. |
google.gdata.gbase.MediaEntry
|
getMediaEntry(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves a Google Base media entry. |
google.gdata.gbase.MediaFeed
|
getMediaFeed(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves the media feed used for managing the media attachments for one Google Base Item. |
google.gdata.gbase.SnippetsEntry
|
getSnippetsEntry(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves a Google Base snippet entry. |
google.gdata.gbase.SnippetsFeed
|
getSnippetsFeed(<string|google.gdata.gbase.SnippetsQuery> uriOrQuery, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves the feed of snippets of public items. |
Methods inherited from class google.gdata.client.GoogleService |
getUserCredentials, setUserCredentials, setGadgetsAuthentication, useOAuth
|
Methods inherited from class google.gdata.client.Service |
setDeveloperKey, supportsAlt, setAltSupport, isXd2Supported, setXd2Supported, getFeed, getEntry, insertEntry, updateEntry, deleteEntry, setHeaders
|
Field Detail |
<static> <final> {string} SERVICE_NAME
Constructor Detail |
google.gdata.gbase.GoogleBaseService(<string> applicationName)
applicationName
- Name of application (used for tracking?).
Method Detail |
google.gdata.gbase.AttributesEntry getAttributesEntry(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
uri
- URI of entry.
continuation
- Function to call with entry retrieved. For example: function(entryRoot) {
var entry = entryRoot.entry;
};
.
opt_errorHandler
- Function to handle error if any. For example: // error: an instance of Error
function(error) {
alert(error);
};
.
google.gdata.gbase.AttributesFeed getAttributesFeed(<string|google.gdata.gbase.AttributesQuery> uriOrQuery, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
uriOrQuery
- URI of feed or query.
continuation
- Function to call with feed retrieved. For example: function(feedRoot) {
var feed = feedRoot.feed;
var entries = feed.entry;
};
.
opt_errorHandler
- Function to handle error if any. For example: // error: an instance of Error
function(error) {
alert(error);
};
.
google.gdata.gbase.ItemsEntry getItemsEntry(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
uri
- URI of entry.
continuation
- Function to call with entry retrieved. For example: function(entryRoot) {
var entry = entryRoot.entry;
};
.
opt_errorHandler
- Function to handle error if any. For example: // error: an instance of Error
function(error) {
alert(error);
};
.
google.gdata.gbase.ItemsFeed getItemsFeed(<string|google.gdata.gbase.ItemsQuery> uriOrQuery, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
uriOrQuery
- URI of feed or query.
continuation
- Function to call with feed retrieved. For example: function(feedRoot) {
var feed = feedRoot.feed;
var entries = feed.entry;
};
.
opt_errorHandler
- Function to handle error if any. For example: // error: an instance of Error
function(error) {
alert(error);
};
.
google.gdata.gbase.ItemTypesEntry getItemTypesEntry(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
uri
- URI of entry.
continuation
- Function to call with entry retrieved. For example: function(entryRoot) {
var entry = entryRoot.entry;
};
.
opt_errorHandler
- Function to handle error if any. For example: // error: an instance of Error
function(error) {
alert(error);
};
.
google.gdata.gbase.ItemTypesFeed getItemTypesFeed(<string|google.gdata.gbase.ItemTypesQuery> uriOrQuery, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
uriOrQuery
- URI of feed or query.
continuation
- Function to call with feed retrieved. For example: function(feedRoot) {
var feed = feedRoot.feed;
var entries = feed.entry;
};
.
opt_errorHandler
- Function to handle error if any. For example: // error: an instance of Error
function(error) {
alert(error);
};
.
google.gdata.gbase.LocalesEntry getLocalesEntry(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
uri
- URI of entry.
continuation
- Function to call with entry retrieved. For example: function(entryRoot) {
var entry = entryRoot.entry;
};
.
opt_errorHandler
- Function to handle error if any. For example: // error: an instance of Error
function(error) {
alert(error);
};
.
google.gdata.gbase.LocalesFeed getLocalesFeed(<string|google.gdata.gbase.LocalesQuery> uriOrQuery, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
uriOrQuery
- URI of feed or query.
continuation
- Function to call with feed retrieved. For example: function(feedRoot) {
var feed = feedRoot.feed;
var entries = feed.entry;
};
.
opt_errorHandler
- Function to handle error if any. For example: // error: an instance of Error
function(error) {
alert(error);
};
.
google.gdata.gbase.MediaEntry getMediaEntry(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
uri
- URI of entry.
continuation
- Function to call with entry retrieved. For example: function(entryRoot) {
var entry = entryRoot.entry;
};
.
opt_errorHandler
- Function to handle error if any. For example: // error: an instance of Error
function(error) {
alert(error);
};
.
google.gdata.gbase.MediaFeed getMediaFeed(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
uri
- URI of feed.
continuation
- Function to call with feed retrieved. For example: function(feedRoot) {
var feed = feedRoot.feed;
var entries = feed.entry;
};
.
opt_errorHandler
- Function to handle error if any. For example: // error: an instance of Error
function(error) {
alert(error);
};
.
google.gdata.gbase.SnippetsEntry getSnippetsEntry(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
uri
- URI of entry.
continuation
- Function to call with entry retrieved. For example: function(entryRoot) {
var entry = entryRoot.entry;
};
.
opt_errorHandler
- Function to handle error if any. For example: // error: an instance of Error
function(error) {
alert(error);
};
.
google.gdata.gbase.SnippetsFeed getSnippetsFeed(<string|google.gdata.gbase.SnippetsQuery> uriOrQuery, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
uriOrQuery
- URI of feed or query.
continuation
- Function to call with feed retrieved. For example: function(feedRoot) {
var feed = feedRoot.feed;
var entries = feed.entry;
};
.
opt_errorHandler
- Function to handle error if any. For example: // error: an instance of Error
function(error) {
alert(error);
};
.
|
GData JavaScript Client 1.7 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |