Interface TranslationDataManager
-
- All Superinterfaces:
DataManager<TranslationEntity>
- All Known Implementing Classes:
MybatisTranslationDataManager
public interface TranslationDataManager extends DataManager<TranslationEntity>
- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
deleteByScopeIdAndScopeType(String scopeId, String scopeType)
TranslationEntity
findByScopeIdScopeTypeKeyAndLocale(String scopeId, String scopeType, String key, String locale)
long
findTranslationCountByQueryCriteria(TranslationQueryImpl translationQuery)
List<Translation>
findTranslationsByQueryCriteria(TranslationQueryImpl translationQuery)
List<TranslationEntity>
findTranslationsForScopeIdAndScopeType(String scopeId, String scopeType)
-
-
-
Method Detail
-
findByScopeIdScopeTypeKeyAndLocale
TranslationEntity findByScopeIdScopeTypeKeyAndLocale(String scopeId, String scopeType, String key, String locale)
-
findTranslationsForScopeIdAndScopeType
List<TranslationEntity> findTranslationsForScopeIdAndScopeType(String scopeId, String scopeType)
-
findTranslationsByQueryCriteria
List<Translation> findTranslationsByQueryCriteria(TranslationQueryImpl translationQuery)
-
findTranslationCountByQueryCriteria
long findTranslationCountByQueryCriteria(TranslationQueryImpl translationQuery)
-
-