
com.commercetools.sync.inventories.helpers.InventorySyncStatistics Maven / Gradle / Ivy
package com.commercetools.sync.inventories.helpers;
import com.commercetools.sync.commons.helpers.BaseSyncStatistics;
public class InventorySyncStatistics extends BaseSyncStatistics {
public InventorySyncStatistics() {
super();
}
/**
* Builds a summary of the inventory sync statistics instance that looks like the following
* example:
*
*
* Summary: 25 inventory entries were processed in total (9 created, 5 updated, 2 failed to sync).
*
*
* @return summary message
*/
@Override
public String getReportMessage() {
return getDefaultReportMessageForResource("inventory entries");
}
@Override
protected InventorySyncStatistics getThis() {
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy