Package org.apache.openmeetings.db.dao
Interface IGroupAdminDataProviderDao<T extends IDataProviderEntity>
- All Superinterfaces:
IDataProviderDao<T>
- All Known Implementing Classes:
ExtraMenuDao,GroupDao,RoomDao,UserDao
public interface IGroupAdminDataProviderDao<T extends IDataProviderEntity>
extends IDataProviderDao<T>
-
Method Summary
Modifier and TypeMethodDescriptiondefault longadminCount(String search) Count the number of instances ofIGroupAdminDataProviderDaolongadminCount(String search, Long adminId) Count the number of instances ofIGroupAdminDataProviderDaoadminGet(String search, long start, long count, org.apache.wicket.extensions.markup.html.repeater.util.SortParam<String> order) Get a list of instances ofIGroupAdminDataProviderDaoadminGet(String search, Long adminId, long start, long count, org.apache.wicket.extensions.markup.html.repeater.util.SortParam<String> order) Get a list of instances ofIGroupAdminDataProviderDao
-
Method Details
-
adminGet
List<T> adminGet(String search, Long adminId, long start, long count, org.apache.wicket.extensions.markup.html.repeater.util.SortParam<String> order) Get a list of instances ofIGroupAdminDataProviderDao- Parameters:
search- - string search criteria to filter entitiesadminId- - id of group admin userstart- - the start to range to retrievecount- - maximum instance count to retrieveorder- - column and sort order- Returns:
- list of instances in the range specified
-
adminGet
default List<T> adminGet(String search, long start, long count, org.apache.wicket.extensions.markup.html.repeater.util.SortParam<String> order) Get a list of instances ofIGroupAdminDataProviderDao- Parameters:
search- - string search criteria to filter entitiesstart- - the start to range to retrievecount- - maximum instance count to retrieveorder- - column and sort order- Returns:
- list of instances in the range specified
-
adminCount
Count the number of instances ofIGroupAdminDataProviderDao- Parameters:
search- - string search criteria to filter entitiesadminId- - id of group admin user- Returns:
- count of instances satisfying given search criteria
-
adminCount
Count the number of instances ofIGroupAdminDataProviderDao- Parameters:
search- - string search criteria to filter entities- Returns:
- count of instances satisfying given search criteria
-