com.hcl.voltmx.sync.services.syncruntime.conflicts
Class ConflictResolutionResult
java.lang.Object
com.hcl.voltmx.sync.services.syncruntime.conflicts.ConflictResolutionResult
public class ConflictResolutionResult
- extends java.lang.Object
The ConflictResolutionResult
holds the resolved entity after the conflict resolution.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ConflictResolutionResult
public ConflictResolutionResult()
- Creates the
ConflictResolutionResult
instance
ConflictResolutionResult
public ConflictResolutionResult(IEntity resolvedEntity,
SyncEntity.ChangeType changeType,
java.lang.Boolean ignore)
- Creates the
ConflictResolutionResult
instance with the resolved entity, change type
- Parameters:
resolvedEntity
- Instance of IEntity
. Resolved entitychangeType
- Operation type which will be performed on data sourceignore
- Flag to indicate to ignore the conflict.
If the value is true
, then the changes will not be applied to data source.
getIgnore
public java.lang.Boolean getIgnore()
setIgnore
public void setIgnore(java.lang.Boolean ignore)
getChangeType
public SyncEntity.ChangeType getChangeType()
setChangeType
public void setChangeType(SyncEntity.ChangeType changeType)
getResolvedEntity
public IEntity getResolvedEntity()
setResolvedEntity
public void setResolvedEntity(IEntity resolvedEntity)