View Javadoc
1   package net.avcompris.examples.users3.dao;
2   
3   import javax.annotation.Nullable;
4   
5   public interface UserSessionsDto {
6   
7   	UserSessionDto[] getResults();
8   
9   	int getTotal();
10  
11  	@Nullable
12  	String getSqlWhereClause();
13  }