|
GData JavaScript Client 1.4 | ||||||||
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. |
Methods inherited from class google.gdata.client.GoogleService |
getUserCredentials, setUserCredentials, setAuthenticationCookie
|
Methods inherited from class google.gdata.client.Service |
setDeveloperKey, supportsAlt, setAltSupport, isXd2Supported, setXd2Supported, getCurrentPageLocation_, 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);
};
|
GData JavaScript Client 1.4 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |