View Javadoc
1   package net.avcompris.commons3.dao;
2   
3   import javax.annotation.Nullable;
4   
5   public interface EntitiesDto<T extends EntityDto> {
6   
7   	int getTotal();
8   
9   	T[] getResults();
10  
11  	@Nullable
12  	String getSqlWhereClause();
13  }