|
ContactEntry
|
addGroup(ContactEntry contact, String groupId)
Adds a group to a given contact
|
|
List<BatchResult>
|
batchContacts(String batchId, List<NestedProcessor> operations)
This tag encloses a series of nested processors that perform operations on contacts entities
|
|
void
|
batchDelete(MuleMessage message, String operationId, Collection<BaseEntry<?>> entries)
The function of this sub processor is to add updated operations into the current batch for the given entries
This processor is intended to be used nested inside batch-contacts or batch-groups, although there's no syntactic
validation inside the connector's XSD enforcing that.
|
|
List<BatchResult>
|
batchGroups(String batchId, List<NestedProcessor> operations)
This tag encloses a series of nested processors that perform operations on group entities.
|
|
void
|
batchInsert(MuleMessage message, String operationId, Collection<BaseEntry<?>> entries)
The function of this sub processor is to add insert operations into the current batch for the given entries
This processor is intended to be used nested inside batch-contacts or batch-groups, although there's no syntactic
validation inside the connector's XSD enforcing that.
|
|
void
|
batchUpdate(MuleMessage message, String operationId, Collection<BaseEntry<?>> entries)
The function of this sub processor is to add updated operations into the current batch for the given entries
This processor is intended to be used nested inside batch-contacts or batch-groups, although there's no syntactic
validation inside the connector's XSD enforcing that.
|
|
ContactGroupEntry
|
createGroup(ContactGroupEntry group)
Inserts a new group
|
|
void
|
deleteContact(ContactEntry entry)
Deletes a given contact
|
|
void
|
deleteContactById(String contactId)
Deletes a contact signaled by its id
|
|
void
|
deleteContactPhoto(ContactEntry contact)
Deletes the photo associated to a given contact
|
|
void
|
deleteContactPhotoById(String contactId)
Deletes the photo of a contact signaled by its id
|
|
void
|
deleteGroup(ContactGroupEntry group)
Deletes the given group
|
|
void
|
deleteGroupById(String groupId)
Deletes a group signaled by its id
|
|
InputStream
|
downloadPhoto(ContactEntry contact)
Downloads the photo of a given contact
|
|
InputStream
|
downloadPhotoById(String id)
Downloads the photo of a contact signaled by its id contact and returns it as an input stream
|
|
String
|
getAccessToken()
|
|
String
|
getAccessTokenId()
|
|
String
|
getApplicationName()
|
|
String
|
getConsumerKey()
|
|
String
|
getConsumerSecret()
|
|
ContactEntry
|
getContactById(String id)
Retrieves a contact by id
|
|
List<ContactEntry>
|
getContacts(String updatedMin, String updatedMax, String datetimeFormat, String fullTextQuery, int maxResults, int firstResult, ContactQuery.SortOrder sortOrder, Boolean showDeleted, ContactQuery.OrderBy orderBy, String groupId)
Retrieves all the contacts matching the given criterias.
|
|
ContactGroupEntry
|
getGroupById(String id)
Retrieves a group by id
|
|
ContactGroupEntry
|
getGroupByName(String groupName)
Retrieves a group with the given name
|
|
List<ContactGroupEntry>
|
getGroups(String updatedMin, String updatedMax, String datetimeFormat)
Returns all the groups the authenticated user has access to
|
|
IdentifierPolicy
|
getIdentifierPolicy()
|
|
String
|
getScope()
|
|
final
ContactsService
|
getService()
|
|
ContactEntry
|
insertContact(ContactEntry contact)
Inserts a new contact
|
|
void
|
postAuth()
|
|
void
|
setAccessToken(String accessToken)
|
|
void
|
setApplicationName(String applicationName)
|
|
void
|
setConsumerKey(String consumerKey)
|
|
void
|
setConsumerSecret(String consumerSecret)
|
|
void
|
setIdentifierPolicy(IdentifierPolicy identifierPolicy)
|
|
void
|
setScope(String scope)
|
|
void
|
setService(ContactsService contactsService)
|
|
ContactEntry
|
updateContact(ContactEntry contact)
Updates a contact entry
|
|
void
|
updateContactPhoto(String contactId, InputStream in)
Updates the photo of a contact signaled by its id taken a java.io.InputStream as an input
|
|
ContactGroupEntry
|
updateGroup(ContactGroupEntry group)
Updates the state of a group
|