com.businessobjects.sdk.plugin.desktop.replication
Interface IReplicationBase.CeConflictResolutionMode

Enclosing interface:
IReplicationBase

public static interface IReplicationBase.CeConflictResolutionMode

Contains constants that are used to specify how to handle replication conflicts.


Field Summary
static int MASTER_WINS
          Automatically resolve conflicts in favour of the version from the master cluster.
static int OFF
          No automatic conflict resolution.
static int SLAVE_WINS
          Automatically resolve conflicts in favour of the version from the slave cluster.
 

Field Detail

OFF

static final int OFF
No automatic conflict resolution. Objects with conflicting changes on the master and slave clusters will not be modified during replication. Resolution must be done manually. This is the default behaviour.

See Also:
Constant Field Values

MASTER_WINS

static final int MASTER_WINS
Automatically resolve conflicts in favour of the version from the master cluster. Changes on the slave cluster will be lost.

See Also:
Constant Field Values

SLAVE_WINS

static final int SLAVE_WINS
Automatically resolve conflicts in favour of the version from the slave cluster. Changes on the master cluster will be lost.

See Also:
Constant Field Values