Inheritance diagram for org.openmobileis.synchro.algo.replication.SynchroAtomicObject:
All object managed by the synchronisation procesus are Atomic Object. To be synchronised Object must implements this interface..
Definition at line 41 of file SynchroAtomicObject.java.
Public Member Functions | |
String | getUID () |
return the Atomic Object UID. | |
String | getCheckSum () |
return the checksum of the atomic Object. | |
void | setCheckSum (String sum) |
set the checksum of the atomic Object. | |
long | getCreationDate () |
return the atomic Object creation date. | |
long | getModifSyncNumber () |
return the sync number of the last modification. | |
void | setModifSyncNumber (long ts) |
set the synchro number of the last modification. | |
short | getModificationType () |
return the last modification type (ADD, REPLACE, DELETE). | |
void | setModificationType (short type) |
set the last modification type (ADD, REPLACE, DELETE). | |
Static Public Attributes | |
static final long | serialVersionUID = 5521257935120563452L |
static final short | ADD = 1 |
static final short | REPLACE = 2 |
static final short | DELETE = 3 |
|
return the checksum of the atomic Object. If checksum has changed, the object is synchronized. Implemented in org.openmobileis.synchro.algo.replication.DefaultSynchroAtomicObject. |
|
return the sync number of the last modification. sync number can be anything that identifie the modification to manage synchronization. It can be a timestamp or any incremental number. Implemented in org.openmobileis.synchro.algo.replication.DefaultSynchroAtomicObject. |
|
|
set the checksum of the atomic Object. If checksum has changed, the object is synchronized. Implemented in org.openmobileis.synchro.algo.replication.DefaultSynchroAtomicObject. |
|
set the synchro number of the last modification. sync number can be anything that identifie the modification to manage synchronization. It can be a timestamp or any incremental number. Implemented in org.openmobileis.synchro.algo.replication.DefaultSynchroAtomicObject. |