Package de.hybris.platform.catalog.daos
Interface ItemSyncTimestampDao
-
- All Known Implementing Classes:
DefaultItemSyncTimestampDao
public interface ItemSyncTimestampDaoItemSyncTimestampModeloriented Data Access Object.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<ItemSyncTimestampModel>findLastSourceSyncTimestamps(SyncItemJobModel syncJob, ItemModel source)Returns list ofItemSyncTimestampModelfor a given source itemsyncJob.sourceandtargetjava.util.List<ItemSyncTimestampModel>findLastTargetSyncTimestamps(SyncItemJobModel syncJob, ItemModel source)Returns list ofItemSyncTimestampModelfor a given target itemsyncJob.sourceandtargetjava.util.List<ItemSyncTimestampModel>findSyncTimestampsByCatalogVersion(CatalogVersionModel catalogVersion, int limit)Returns a limited list of sync timestamps for a specifiedcatalogVersion.
ThecatalogVersionmay be bothItemSyncTimestampModel.SOURCEVERSIONorItemSyncTimestampModel.TARGETVERSION.java.util.List<ItemSyncTimestampModel>findSyncTimestampsByItem(ItemModel item, int limit)Returns a limited list of sync timestamps for a specifieditem.
Theitemmay be both:ItemSyncTimestampModel.SOURCEITEMorItemSyncTimestampModel.TARGETITEM.
-
-
-
Method Detail
-
findSyncTimestampsByItem
java.util.List<ItemSyncTimestampModel> findSyncTimestampsByItem(ItemModel item, int limit)
Returns a limited list of sync timestamps for a specifieditem.
Theitemmay be both:ItemSyncTimestampModel.SOURCEITEMorItemSyncTimestampModel.TARGETITEM.- Parameters:
item-ItemModelfor which we are searching sync timestampslimit- limit count of result (-1 : no limit)
-
findSyncTimestampsByCatalogVersion
java.util.List<ItemSyncTimestampModel> findSyncTimestampsByCatalogVersion(CatalogVersionModel catalogVersion, int limit)
Returns a limited list of sync timestamps for a specifiedcatalogVersion.
ThecatalogVersionmay be bothItemSyncTimestampModel.SOURCEVERSIONorItemSyncTimestampModel.TARGETVERSION.- Parameters:
catalogVersion-CatalogVersionModelfor which we are searching sync timestampslimit- limit count of result (-1 : no limit)
-
findLastSourceSyncTimestamps
java.util.List<ItemSyncTimestampModel> findLastSourceSyncTimestamps(SyncItemJobModel syncJob, ItemModel source)
Returns list ofItemSyncTimestampModelfor a given source itemsyncJob.sourceandtarget
-
findLastTargetSyncTimestamps
java.util.List<ItemSyncTimestampModel> findLastTargetSyncTimestamps(SyncItemJobModel syncJob, ItemModel source)
Returns list ofItemSyncTimestampModelfor a given target itemsyncJob.sourceandtarget
-
-