Module org.apache.openmeetings.db
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 SummaryModifier 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- 
adminGetList<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 entities
- adminId- - id of group admin user
- start- - the start to range to retrieve
- count- - maximum instance count to retrieve
- order- - column and sort order
- Returns:
- list of instances in the range specified
 
- 
adminGetdefault 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 entities
- start- - the start to range to retrieve
- count- - maximum instance count to retrieve
- order- - column and sort order
- Returns:
- list of instances in the range specified
 
- 
adminCountCount the number of instances ofIGroupAdminDataProviderDao- Parameters:
- search- - string search criteria to filter entities
- adminId- - id of group admin user
- Returns:
- count of instances satisfying given search criteria
 
- 
adminCountCount the number of instances ofIGroupAdminDataProviderDao- Parameters:
- search- - string search criteria to filter entities
- Returns:
- count of instances satisfying given search criteria
 
 
-