|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use SyncException | |
---|---|
com.funambol.syncclient.spap | |
com.funambol.syncclient.spds | This package contains the Funambol Data Synchronization API |
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 SyncException in com.funambol.syncclient.spap |
---|
Methods in com.funambol.syncclient.spap that throw SyncException | |
---|---|
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 SyncException in com.funambol.syncclient.spds |
---|
Subclasses of SyncException in com.funambol.syncclient.spds | |
---|---|
class |
AuthenticationException
Represents a "not authorized" error usually received from the server. |
class |
UpdateException
Represents a "update" error received from the server. |
Methods in com.funambol.syncclient.spds that throw SyncException | |
---|---|
static SyncManager |
SyncManager.getSyncManager(java.lang.String appURI)
This is a factory method for SyncManager instances. |
static SyncManager |
SyncManager.getSyncManager(java.lang.String appURI,
java.util.Properties runtimeProperties)
This is a factory method for SyncManager instances. |
void |
SyncManager.sync()
Synchronize all registered synchronization sources. |
Constructors in com.funambol.syncclient.spds that throw SyncException | |
---|---|
SyncConfiguration(java.util.Hashtable syncParams,
java.util.Properties runtimeProperties)
SyncConfiguration constructor |
|
SyncManager(java.lang.String appURI)
Creates a SyncManager bound to a specific application. |
|
SyncManager(java.lang.String appURI,
java.util.Properties runtimeProperties)
Creates a SyncManager bound to a specific application. |
Uses of SyncException in com.funambol.syncclient.spds.engine |
---|
Methods in com.funambol.syncclient.spds.engine that throw SyncException | |
---|---|
void |
SyncSource.beginSync(int syncMode)
Called after SyncManager preparation and initialization just before start the synchronization of the SyncSource. |
void |
SyncSource.commitSync()
Called just before committing the synchronization process by the SyncManager. |
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. |
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. |
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. |
Uses of SyncException in com.funambol.syncclient.spds.engine.recovery |
---|
Methods in com.funambol.syncclient.spds.engine.recovery that throw SyncException | |
---|---|
void |
AbstractRecovery.beginSync(int syncMode)
Method implements start sync operations |
void |
AbstractRecovery.commitSync()
Method implements end sync operations |
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. |
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 SyncException in com.funambol.syncclient.spds.source |
---|
Methods in com.funambol.syncclient.spds.source that throw SyncException | |
---|---|
void |
FileSystemSyncSource.beginSync(int type)
|
void |
DummySyncSource.beginSync(int type)
|
protected void |
FileSystemSyncSource.emptyDataStore()
reset the syncDB removing all items |
void |
FileSystemSyncSource.endSync()
|
void |
DummySyncSource.endSync()
|
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[] |
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)
|
void |
FileSystemSyncSource.removeSyncItem(java.security.Principal principal,
SyncItem syncItem)
|
void |
DummySyncSource.removeSyncItem(java.security.Principal principal,
SyncItem syncItem)
|
protected void |
FileSystemSyncSource.restoreSyncDB()
remove old deleted files from syncDB |
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)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |