-
- All Implemented Interfaces:
public interface KeywordRepository
-
-
Method Summary
Modifier and Type Method Description abstract SizedIterable<KeywordDao>findAll()abstract KeywordDaofindById(Long id)abstract SizedIterable<KeywordDao>findByType(KeywordTypeEnum type)abstract KeywordDaofindByValueOrUri(KeywordTypeEnum type, String value, String uri, String framework)abstract KeywordDaofindOrCreate(KeywordTypeEnum type, String value, String uri, String framework)abstract KeywordDaocreate(KeywordTypeEnum type, String value, String uri, String framework)abstract KeywordDaogetDefaultAuthor()abstract KeywordTablegetTable()abstract KeywordDao.CompaniongetDao()-
-
Method Detail
-
findAll
abstract SizedIterable<KeywordDao> findAll()
-
findById
abstract KeywordDao findById(Long id)
-
findByType
abstract SizedIterable<KeywordDao> findByType(KeywordTypeEnum type)
-
findByValueOrUri
abstract KeywordDao findByValueOrUri(KeywordTypeEnum type, String value, String uri, String framework)
-
findOrCreate
abstract KeywordDao findOrCreate(KeywordTypeEnum type, String value, String uri, String framework)
-
create
abstract KeywordDao create(KeywordTypeEnum type, String value, String uri, String framework)
-
getDefaultAuthor
abstract KeywordDao getDefaultAuthor()
-
getTable
abstract KeywordTable getTable()
-
getDao
abstract KeywordDao.Companion getDao()
-
-
-
-