Class SynchronizeResult
- java.lang.Object
-
- com.flowable.dataobject.api.runtime.SynchronizeResult
-
public class SynchronizeResult extends Object
A simple synchronization result object holding information about a master data entry synchronization action.- Author:
- Micha Kiener
-
-
Constructor Summary
Constructors Constructor Description SynchronizeResult()
SynchronizeResult(String synchronizationMessage)
SynchronizeResult(String synchronizationMessage, int masterDataEntriesCreated, int masterDataEntriesUpdated, int masterDataEntriesArchived)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getMasterDataEntriesArchived()
int
getMasterDataEntriesCreated()
int
getMasterDataEntriesUpdated()
String
getSynchronizationMessage()
int
masterDataEntryArchived()
int
masterDataEntryCreated()
int
masterDataEntryUpdated()
void
setMasterDataEntriesArchived(int masterDataEntriesArchived)
void
setMasterDataEntriesCreated(int masterDataEntriesCreated)
void
setMasterDataEntriesUpdated(int masterDataEntriesUpdated)
void
setSynchronizationMessage(String synchronizationMessage)
-
-
-
Constructor Detail
-
SynchronizeResult
public SynchronizeResult()
-
SynchronizeResult
public SynchronizeResult(String synchronizationMessage)
-
SynchronizeResult
public SynchronizeResult(String synchronizationMessage, int masterDataEntriesCreated, int masterDataEntriesUpdated, int masterDataEntriesArchived)
-
-
Method Detail
-
masterDataEntryCreated
public int masterDataEntryCreated()
-
masterDataEntryUpdated
public int masterDataEntryUpdated()
-
masterDataEntryArchived
public int masterDataEntryArchived()
-
getSynchronizationMessage
public String getSynchronizationMessage()
-
setSynchronizationMessage
public void setSynchronizationMessage(String synchronizationMessage)
-
getMasterDataEntriesCreated
public int getMasterDataEntriesCreated()
-
setMasterDataEntriesCreated
public void setMasterDataEntriesCreated(int masterDataEntriesCreated)
-
getMasterDataEntriesUpdated
public int getMasterDataEntriesUpdated()
-
setMasterDataEntriesUpdated
public void setMasterDataEntriesUpdated(int masterDataEntriesUpdated)
-
getMasterDataEntriesArchived
public int getMasterDataEntriesArchived()
-
setMasterDataEntriesArchived
public void setMasterDataEntriesArchived(int masterDataEntriesArchived)
-
-