Uses of Interface
com.funambol.syncclient.spds.engine.SyncItem

Packages that use SyncItem
com.funambol.syncclient.spap   
com.funambol.syncclient.spds.engine This package contains the API to interface the synchronization engine with host applications. 
com.funambol.syncclient.spds.engine.recovery This package contains the Funambol Data Synchronization API 
com.funambol.syncclient.spds.source   
 

Uses of SyncItem in com.funambol.syncclient.spap
 

Methods in com.funambol.syncclient.spap that return SyncItem
 SyncItem[] AssetSyncSource.getAllSyncItems(java.security.Principal principal)
          Returns a list of the assets except those with state 'D'
 SyncItem[] AssetSyncSource.getDeletedSyncItems(java.security.Principal principal, java.util.Date since)
           
 SyncItem[] AssetSyncSource.getNewSyncItems(java.security.Principal principal, java.util.Date since)
           
 SyncItem[] AssetSyncSource.getUpdatedSyncItems(java.security.Principal principal, java.util.Date since)
           
 SyncItem AssetSyncSource.setSyncItem(java.security.Principal principal, SyncItem syncItem)
          Replaces an existing Asset or adds a new Asset if it does not exist.
 

Methods in com.funambol.syncclient.spap with parameters of type SyncItem
 void AssetSyncSource.removeSyncItem(java.security.Principal principal, SyncItem syncItem)
          Removes a Asset given its key.
 SyncItem AssetSyncSource.setSyncItem(java.security.Principal principal, SyncItem syncItem)
          Replaces an existing Asset or adds a new Asset if it does not exist.
 

Uses of SyncItem in com.funambol.syncclient.spds.engine
 

Classes in com.funambol.syncclient.spds.engine that implement SyncItem
 class SyncItemImpl
          SyncItemImpl is a basic implemenation of a SyncItem.
 

Methods in com.funambol.syncclient.spds.engine that return SyncItem
 SyncItem[] SyncSource.getAllSyncItems(java.security.Principal principal)
          Returns all items in the data store belonging to the given principal.
 SyncItem[] SyncSource.getDeletedSyncItems(java.security.Principal principal, java.util.Date since)
          Returns all deleted items belonging to the given principal and deleted after the given point in time.
 SyncItem[] SyncSource.getNewSyncItems(java.security.Principal principal, java.util.Date since)
          Returns all new items belonging to the given principal and created after the given point in time.
static SyncItem SyncItemImpl.getNotExistingSyncItem(SyncSource syncSource)
          Creates and returns a "not-existing" SyncItem.
 SyncItem SyncOperation.getSyncItem()
          Rturns the item associated to the operation
 SyncItem[] SyncSource.getUpdatedSyncItems(java.security.Principal principal, java.util.Date since)
          Returns all updated items belonging to the given principal and modified after the given point in time.
 SyncItem SyncSource.setSyncItem(java.security.Principal principal, SyncItem syncItem)
          Replaces an existing SyncItem or adds a new SyncItem if it does not exist.
 

Methods in com.funambol.syncclient.spds.engine with parameters of type SyncItem
 void SyncSource.removeSyncItem(java.security.Principal principal, SyncItem syncItem)
          Removes a SyncItem given its key.
 SyncItem SyncSource.setSyncItem(java.security.Principal principal, SyncItem syncItem)
          Replaces an existing SyncItem or adds a new SyncItem if it does not exist.
 

Constructors in com.funambol.syncclient.spds.engine with parameters of type SyncItem
SyncOperation(SyncItem syncItem, char operation)
          Creates a new SyncOperation given the SyncItem and the operation.
 

Uses of SyncItem in com.funambol.syncclient.spds.engine.recovery
 

Methods in com.funambol.syncclient.spds.engine.recovery that return SyncItem
 SyncItem[] AbstractRecovery.getAllSyncItems(java.security.Principal principal)
          Returns all items in the data store belonging to the given principal.
 SyncItem[] AbstractRecovery.getDeletedSyncItems(java.security.Principal principal, java.util.Date since)
          Returns all deleted items belonging to the given principal and deleted after the given point in time.
 SyncItem[] AbstractRecovery.getNewSyncItems(java.security.Principal principal, java.util.Date since)
          Returns all new items belonging to the given principal and created after the given point in time.
 SyncItem[] AbstractRecovery.getUpdatedSyncItems(java.security.Principal principal, java.util.Date since)
          Returns all updated items belonging to the given principal and modified after the given point in time.
 SyncItem AbstractRecovery.setSyncItem(java.security.Principal principal, SyncItem syncItem)
          Replaces an existing SyncItem or adds a new SyncItem if it does not exist.
 

Methods in com.funambol.syncclient.spds.engine.recovery with parameters of type SyncItem
 void AbstractRecovery.removeSyncItem(java.security.Principal principal, SyncItem syncItem)
          Removes a SyncItem given its key.
 SyncItem AbstractRecovery.setSyncItem(java.security.Principal principal, SyncItem syncItem)
          Replaces an existing SyncItem or adds a new SyncItem if it does not exist.
 

Uses of SyncItem in com.funambol.syncclient.spds.source
 

Methods in com.funambol.syncclient.spds.source that return SyncItem
protected  SyncItem[] SIFFileSystemSyncSource.filterSyncItems(java.security.Principal principal, java.util.Date since, char state)
          Filters the SyncItems in the synchronization database (after a refresh) based on the given principal, last sync timestamp and state (see SyncItemState).
protected  SyncItem[] SIFSyncSource.filterSyncItems(java.security.Principal principal, java.util.Date since, char state)
          Filters the SyncItems in the synchronization database (after a refresh) based on the given principal, last sync timestamp and state (see SyncItemState).
protected  SyncItem[] FileSystemSyncSource.filterSyncItems(java.security.Principal principal, java.util.Date since, char state)
          Filters the SyncItems in the synchronization database (after a refresh) based on the given principal, last sync timestamp and state (see SyncItemState).
 SyncItem[] FileSystemSyncSource.getAllSyncItems(java.security.Principal principal)
           
 SyncItem[] DummySyncSource.getAllSyncItems(java.security.Principal principal)
           
 SyncItem[] FileSystemSyncSource.getDeletedSyncItems(java.security.Principal principal, java.util.Date since)
           
 SyncItem[] DummySyncSource.getDeletedSyncItems(java.security.Principal principal, java.util.Date since)
           
 SyncItem[] FileSystemSyncSource.getNewSyncItems(java.security.Principal principal, java.util.Date since)
           
 SyncItem[] DummySyncSource.getNewSyncItems(java.security.Principal principal, java.util.Date since)
           
 SyncItem[] FileSystemSyncSource.getUpdatedSyncItems(java.security.Principal principal, java.util.Date since)
           
 SyncItem[] DummySyncSource.getUpdatedSyncItems(java.security.Principal principal, java.util.Date since)
           
 SyncItem SIFFileSystemSyncSource.setSyncItem(java.security.Principal principal, SyncItem syncItem)
           
 SyncItem SIFSyncSource.setSyncItem(java.security.Principal principal, SyncItem syncItem)
           
 SyncItem FileSystemSyncSource.setSyncItem(java.security.Principal principal, SyncItem syncItem)
           
 SyncItem DummySyncSource.setSyncItem(java.security.Principal principal, SyncItem syncItem)
           
 

Methods in com.funambol.syncclient.spds.source with parameters of type SyncItem
 void FileSystemSyncSource.removeSyncItem(java.security.Principal principal, SyncItem syncItem)
           
 void DummySyncSource.removeSyncItem(java.security.Principal principal, SyncItem syncItem)
           
 SyncItem SIFFileSystemSyncSource.setSyncItem(java.security.Principal principal, SyncItem syncItem)
           
 SyncItem SIFSyncSource.setSyncItem(java.security.Principal principal, SyncItem syncItem)
           
 SyncItem FileSystemSyncSource.setSyncItem(java.security.Principal principal, SyncItem syncItem)
           
 SyncItem DummySyncSource.setSyncItem(java.security.Principal principal, SyncItem syncItem)
           
 



Copyright © 2010 Funambol. All Rights Reserved.