|
GData JavaScript Client 1.9 | ||||||||
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.calendar.CalendarService
Google Calendar service.
Defined in gdata.js
Field Summary | |
<static> <final> {string} |
SERVICE_NAME
Google Calendar service name. |
Fields inherited from class google.gdata.client.Service |
serviceName, applicationName
|
Constructor Summary | |
google.gdata.calendar.CalendarService(<string> applicationName)
Constructor. |
Method Summary | |
google.gdata.calendar.CalendarAclFeed
|
getAclFeed(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves the feed of a calendar's Access Control List (ACL). |
google.gdata.calendar.CalendarFeed
|
getAllCalendarsFeed(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves the feed of all of the calendars a user is subscribed to. |
google.gdata.calendar.CalendarAclEntry
|
getCalendarAclEntry(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves a Calendar ACL entry. |
google.gdata.calendar.CalendarCommentEntry
|
getCalendarCommentEntry(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves a Calendar event's comment entry. |
google.gdata.calendar.CalendarEntry
|
getCalendarEntry(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves a Calendar entry. |
google.gdata.calendar.CalendarEventEntry
|
getCalendarEventEntry(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves a Calendar event entry. |
google.gdata.calendar.CalendarFeed
|
getCalendarsFeed(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves the read-only feed of a user's calendars. |
google.gdata.calendar.CalendarCommentFeed
|
getCommentsFeed(<string|google.gdata.calendar.CalendarCommentQuery> uriOrQuery, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves the feed of a calendar event's comments. |
google.gdata.calendar.CalendarEventFeed
|
getEventsFeed(<string|google.gdata.calendar.CalendarEventQuery> uriOrQuery, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves the feed of a calendar's events. |
google.gdata.calendar.CalendarFeed
|
getOwnCalendarsFeed(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves the feed of the calendars a user owns. |
google.gdata.calendar.SettingsEntry
|
getSettingsEntry(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves a Calendar Settings property entry. |
google.gdata.calendar.CalendarSettingsFeed
|
getSettingsFeed(<string> uri, <function(Object)> continuation, <function(Error)|undefined> opt_errorHandler)
Retrieves the feed of user personal settings. |
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.calendar.CalendarService(<string> applicationName)
applicationName
- Name of application (used for tracking?).
Method Detail |
google.gdata.calendar.CalendarAclFeed getAclFeed(<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.calendar.CalendarFeed getAllCalendarsFeed(<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.calendar.CalendarAclEntry getCalendarAclEntry(<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.calendar.CalendarCommentEntry getCalendarCommentEntry(<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.calendar.CalendarEntry getCalendarEntry(<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.calendar.CalendarEventEntry getCalendarEventEntry(<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.calendar.CalendarFeed getCalendarsFeed(<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.calendar.CalendarCommentFeed getCommentsFeed(<string|google.gdata.calendar.CalendarCommentQuery> 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.calendar.CalendarEventFeed getEventsFeed(<string|google.gdata.calendar.CalendarEventQuery> 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.calendar.CalendarFeed getOwnCalendarsFeed(<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.calendar.SettingsEntry getSettingsEntry(<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.calendar.CalendarSettingsFeed getSettingsFeed(<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);
};
.
|
GData JavaScript Client 1.9 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |