Interface MediaMetaDataServiceDao
-
- All Known Implementing Classes:
DefaultMediaMetaDataServiceDao
public interface MediaMetaDataServiceDao
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<MediaMetaDataModel>
findMetaData(MediaModel media, java.lang.String group)
Retrieves allMediaMetaDataModel
entries for the givenMediaModel
.
-
-
-
Method Detail
-
findMetaData
java.util.Collection<MediaMetaDataModel> findMetaData(MediaModel media, java.lang.String group)
Retrieves allMediaMetaDataModel
entries for the givenMediaModel
. If agroup
is provided, only entries matching this group will be returned.- Parameters:
media
- theMediaModel
in question.group
- optional restriction to a certain group- Returns:
- all
MediaMetaDataModel
currently persisted to database (matching the group if specified)
-
-