Interface OrphanedMediaDao
-
- All Known Implementing Classes:
DefaultOrphanedMediaDao
public interface OrphanedMediaDao extends MediaDao
Dao for finding elements concerning orphaned media handling.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.CollectionfindOrphanedMedias(int start, int count, java.util.Map<java.lang.String,java.lang.Object> values)Executes ...intgetMediasCount()Returns the total count of all hybris medias.-
Methods inherited from interface de.hybris.platform.servicelayer.media.impl.MediaDao
findFolder, findForeignDataOwnerdByMedia, findFormat, findMedia, findMedia, findMediaByCode, findMediaByCode, findMediaByFormat, findMediaFolderByQualifier, findMediaFormatByQualifier, findMediaVersion
-
-
-
-
Method Detail
-
findOrphanedMedias
java.util.Collection findOrphanedMedias(int start, int count, java.util.Map<java.lang.String,java.lang.Object> values)Executes ...SELECT {Item.PK} FROM {Media} WHERE {Media.PK}= ?pk_based_filename OR {Media.DATAPK}=?pk_based_filename- Parameters:
start- the start number of the search rangecount- the number of elements in this search rangevalues- the value map according to all ?<key>- Returns:
- colelction of
MediaModels
-
getMediasCount
int getMediasCount()
Returns the total count of all hybris medias.
-
-