Class SynchronizeResult
java.lang.Object
com.flowable.dataobject.api.runtime.SynchronizeResult
A simple synchronization result object holding information about a master data entry synchronization action.
- Author:
- Micha Kiener
-
Constructor Summary
ConstructorsConstructorDescriptionSynchronizeResult(String synchronizationMessage) SynchronizeResult(String synchronizationMessage, int masterDataEntriesCreated, int masterDataEntriesUpdated, int masterDataEntriesArchived) -
Method Summary
Modifier and TypeMethodDescriptionintintintintintintvoidsetMasterDataEntriesArchived(int masterDataEntriesArchived) voidsetMasterDataEntriesCreated(int masterDataEntriesCreated) voidsetMasterDataEntriesUpdated(int masterDataEntriesUpdated) voidsetSynchronizationMessage(String synchronizationMessage)
-
Constructor Details
-
SynchronizeResult
public SynchronizeResult() -
SynchronizeResult
-
SynchronizeResult
public SynchronizeResult(String synchronizationMessage, int masterDataEntriesCreated, int masterDataEntriesUpdated, int masterDataEntriesArchived)
-
-
Method Details
-
masterDataEntryCreated
public int masterDataEntryCreated() -
masterDataEntryUpdated
public int masterDataEntryUpdated() -
masterDataEntryArchived
public int masterDataEntryArchived() -
getSynchronizationMessage
-
setSynchronizationMessage
-
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)
-