Interface ThemeQuery
-
- All Known Implementing Classes:
ThemeQueryImpl
public interface ThemeQuery
- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ThemeQuery
id(java.lang.String id)
Query for themes with the given idjava.util.List<Theme>
list()
Return a list ofTheme
(s)ThemeQuery
name(java.lang.String name)
Query for themes with the given nameTheme
singleResult()
Return a singleTheme
ThemeQuery
tenantId(java.lang.String tenantId)
Query for themes in the given tenant
-
-
-
Method Detail
-
id
ThemeQuery id(java.lang.String id)
Query for themes with the given id
-
name
ThemeQuery name(java.lang.String name)
Query for themes with the given name
-
tenantId
ThemeQuery tenantId(java.lang.String tenantId)
Query for themes in the given tenant
-
-