com.google.code.facebookapi.FacebookXmlRestClient Maven / Gradle / Ivy
The newest version!
package com.google.code.facebookapi;
public class FacebookXmlRestClient extends FacebookXmlRestClientBase {
public FacebookXmlRestClient( com.google.code.facebookapi.ExtensibleClient client ) {
super( client );
}
public FacebookXmlRestClient( java.lang.String apiKey, java.lang.String secret ) {
super( apiKey, secret );
}
public FacebookXmlRestClient( java.lang.String apiKey, java.lang.String secret, java.lang.String sessionKey ) {
super( apiKey, secret, sessionKey );
}
public FacebookXmlRestClient( java.lang.String apiKey, java.lang.String secret, java.lang.String sessionKey, boolean sessionSecret ) {
super( apiKey, secret, sessionKey, sessionSecret );
}
@Deprecated
public org.w3c.dom.Document profile_getFBML( ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.profile_getFBML( );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
@Deprecated
public org.w3c.dom.Document admin_getDailyMetrics( java.util.Set metrics, java.util.Date start, java.util.Date end ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.admin_getDailyMetrics( metrics, start, end );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document data_getCookies( ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.data_getCookies( );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
@Deprecated
public org.w3c.dom.Document feed_getRegisteredTemplateBundleByID( java.lang.Long id ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.feed_getRegisteredTemplateBundleByID( id );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document friends_get( ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.friends_get( );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document friends_get( java.lang.Long uid ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.friends_get( uid );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_createAlbum( java.lang.String name, java.lang.String description, java.lang.String location, java.lang.Long userId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_createAlbum( name, description, location, userId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document admin_getMetrics( java.util.Set metrics, java.util.Date start, java.util.Date end, long period ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.admin_getMetrics( metrics, start, end, period );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document data_getCookies( java.lang.Long userId, java.lang.CharSequence name ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.data_getCookies( userId, name );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_addTags( java.lang.String photoId, java.util.Collection tags ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_addTags( photoId, tags );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_addTags( java.lang.String photoId, java.util.Collection tags, java.lang.Long userId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_addTags( photoId, tags, userId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document data_getObjectProperty( long objectId, java.lang.String propertyName ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.data_getObjectProperty( objectId, propertyName );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document permissions_checkAvailableApiAccess( java.lang.String apiKey ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.permissions_checkAvailableApiAccess( apiKey );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document dashboard_multiAddNews( java.util.Collection userIds, java.util.Collection newsItems, java.lang.String imageUrl ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.dashboard_multiAddNews( userIds, newsItems, imageUrl );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document friends_getAppUsers( ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.friends_getAppUsers( );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document data_getObjectTypes( ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.data_getObjectTypes( );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document data_getObject( long objectId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.data_getObject( objectId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_uploadWithCaption( java.lang.Long userId, java.io.File photo, java.lang.String caption ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_uploadWithCaption( userId, photo, caption );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document fbml_getCustomTags( java.lang.String appId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.fbml_getCustomTags( appId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document users_getInfo( java.lang.Iterable userIds, java.util.Collection fields ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.users_getInfo( userIds, fields );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document stream_get( java.lang.Long viewerId, java.util.List sourceIds, java.util.Date start, java.util.Date end, java.lang.Integer limit, java.lang.String filterKey, java.util.List metadata ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.stream_get( viewerId, sourceIds, start, end, limit, filterKey, metadata );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document dashboard_multiAddNews( java.util.Collection userIds, java.util.Collection newsItems ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.dashboard_multiAddNews( userIds, newsItems );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document data_getUserPreferences( ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.data_getUserPreferences( );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document data_getObjectType( java.lang.String objectType ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.data_getObjectType( objectType );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_get( java.util.Collection photoIds ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_get( photoIds );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document permissions_checkGrantedApiAccess( java.lang.String apiKey ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.permissions_checkGrantedApiAccess( apiKey );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_upload( java.io.File photo, java.lang.String caption, java.lang.String albumId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_upload( photo, caption, albumId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_upload( java.io.File photo ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_upload( photo );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_upload( java.lang.Long userId, java.io.File photo, java.lang.String caption, java.lang.String albumId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_upload( userId, photo, caption, albumId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document pages_getInfo( java.util.Collection pageIds, java.util.Set fields ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.pages_getInfo( pageIds, fields );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document stream_getComments( java.lang.String postId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.stream_getComments( postId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document users_getStandardInfo( java.util.Collection userIds, java.util.Collection fields ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.users_getStandardInfo( userIds, fields );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_uploadWithCaption( java.io.File photo, java.lang.String caption ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_uploadWithCaption( photo, caption );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
@Deprecated
public org.w3c.dom.Document profile_getFBML( int type, java.lang.Long userId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.profile_getFBML( type, userId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_get( java.lang.Long subjId, java.lang.String albumId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_get( subjId, albumId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document data_getAssociationDefinition( java.lang.String associationName ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.data_getAssociationDefinition( associationName );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document data_getObjects( java.util.Collection objectIds ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.data_getObjects( objectIds );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_get( java.lang.Long subjId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_get( subjId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document friends_getList( java.lang.Long friendListId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.friends_getList( friendListId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document application_getPublicInfoByApiKey( java.lang.String applicationKey ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.application_getPublicInfoByApiKey( applicationKey );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document events_getMembers( java.lang.Long eventId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.events_getMembers( eventId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document fql_query( java.lang.CharSequence query ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.fql_query( query );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_get( java.lang.Long subjId, java.util.Collection photoIds ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_get( subjId, photoIds );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
@Deprecated
public org.w3c.dom.Document profile_getInfoOptions( java.lang.String field ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.profile_getInfoOptions( field );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document payments_getOrders( java.lang.String status, long startTime, long endTime ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.payments_getOrders( status, startTime, endTime );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_uploadToAlbum( java.lang.Long userId, java.io.File photo, java.lang.String albumId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_uploadToAlbum( userId, photo, albumId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document events_get( java.lang.Long userId, java.util.Collection eventIds, java.lang.Long startTime, java.lang.Long endTime ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.events_get( userId, eventIds, startTime, endTime );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
@Deprecated
public org.w3c.dom.Document profile_getFBML( int type ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.profile_getFBML( type );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
@Deprecated
public org.w3c.dom.Document profile_getFBML( java.lang.Long userId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.profile_getFBML( userId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_upload( java.lang.Long userId, java.lang.String caption, java.lang.String albumId, java.lang.String fileName, java.io.InputStream fileStream ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_upload( userId, caption, albumId, fileName, fileStream );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document friends_areFriends( long userId1, long userId2 ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.friends_areFriends( userId1, userId2 );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_getTags( java.util.Collection photoIds ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_getTags( photoIds );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_upload( java.lang.Long userId, java.io.File photo ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_upload( userId, photo );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_createAlbum( java.lang.String albumName, java.lang.Long userId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_createAlbum( albumName, userId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_getByAlbum( java.lang.String albumId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_getByAlbum( albumId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
@Deprecated
public org.w3c.dom.Document feed_getRegisteredTemplateBundles( ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.feed_getRegisteredTemplateBundles( );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document application_getPublicInfo( java.lang.Long applicationId, java.lang.String applicationKey, java.lang.String applicationCanvas ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.application_getPublicInfo( applicationId, applicationKey, applicationCanvas );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_getAlbums( java.lang.Long userId, java.util.Collection albumIds ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_getAlbums( userId, albumIds );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document friends_getMutualFriends( java.lang.Long targetId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.friends_getMutualFriends( targetId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document pages_getInfo( java.util.Collection pageIds, java.util.Collection fields ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.pages_getInfo( pageIds, fields );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document dashboard_multiClearNews( java.util.Collection userIds ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.dashboard_multiClearNews( userIds );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document data_getAssociationDefinitions( ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.data_getAssociationDefinitions( );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document groups_getMembers( java.lang.Number groupId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.groups_getMembers( groupId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document connect_registerUsers( java.util.Collection> accounts ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.connect_registerUsers( accounts );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
@Deprecated
public org.w3c.dom.Document profile_getInfo( java.lang.Long userId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.profile_getInfo( userId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_getAlbums( java.util.Collection albumIds ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_getAlbums( albumIds );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document friends_areFriends( java.util.Collection userIds1, java.util.Collection userIds2 ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.friends_areFriends( userIds1, userIds2 );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document data_getCookies( java.lang.String name ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.data_getCookies( name );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
@Deprecated
public org.w3c.dom.Document admin_getDailyMetrics( java.util.Set metrics, long start, long end ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.admin_getDailyMetrics( metrics, start, end );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document friends_getMutualFriends( java.lang.Long sourceId, java.lang.Long targetId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.friends_getMutualFriends( sourceId, targetId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
@Deprecated
public org.w3c.dom.Document notifications_get( ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.notifications_get( );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document users_getStandardInfo( java.util.Collection userIds, java.util.Set fields ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.users_getStandardInfo( userIds, fields );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document dashboard_multiClearNews( java.util.Map> userIdToNewsIdsMap ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.dashboard_multiClearNews( userIdToNewsIdsMap );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document pages_getInfo( java.lang.Long userId, java.util.Collection fields ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.pages_getInfo( userId, fields );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document friends_getLists( ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.friends_getLists( );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_createAlbum( java.lang.String name, java.lang.String description, java.lang.String location ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_createAlbum( name, description, location );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document groups_get( java.lang.Long userId, java.util.Collection groupIds ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.groups_get( userId, groupIds );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_getAlbums( java.lang.Long userId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_getAlbums( userId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document application_getPublicInfoById( java.lang.Long applicationId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.application_getPublicInfoById( applicationId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document data_getCookies( java.lang.Long userId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.data_getCookies( userId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document pages_getInfo( java.lang.Long userId, java.util.Set fields ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.pages_getInfo( userId, fields );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_createAlbum( java.lang.String albumName ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_createAlbum( albumName );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document stream_getFilters( java.lang.Long userId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.stream_getFilters( userId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document connect_unregisterUsers( java.util.Collection email_hashes ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.connect_unregisterUsers( email_hashes );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document admin_getMetrics( java.util.Set metrics, long start, long end, long period ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.admin_getMetrics( metrics, start, end, period );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document events_get( java.lang.Long userId, java.util.Collection eventIds, java.lang.Long startTime, java.lang.Long endTime, java.lang.String rsvp_status ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.events_get( userId, eventIds, startTime, endTime, rsvp_status );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document users_getInfo( java.lang.Iterable userIds, java.util.Set fields ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.users_getInfo( userIds, fields );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_uploadToAlbum( java.io.File photo, java.lang.String albumId ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_uploadToAlbum( photo, albumId );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document batch_run( java.lang.String methods, boolean serial ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.batch_run( methods, serial );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_get( java.lang.Long subjId, java.lang.String albumId, java.util.Collection photoIds ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_get( subjId, albumId, photoIds );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document photos_getByAlbum( java.lang.String albumId, java.util.Collection photoIds ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.photos_getByAlbum( albumId, photoIds );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
public org.w3c.dom.Document application_getPublicInfoByCanvasName( java.lang.String applicationCanvas ) throws com.google.code.facebookapi.FacebookException {
Object rawResponse = client.application_getPublicInfoByCanvasName( applicationCanvas );
return (org.w3c.dom.Document)parseCallResult( rawResponse );
}
}