* @return - the data list
* @throws SQLException - if the query fails
* @deprecated All paginated list features have been deprecated
*/
public PaginatedList queryForPaginatedList(SessionScope sessionScope, String id, Object paramObject, int pageSize) throws SQLException {
return new PaginatedDataList(sessionScope.getSqlMapExecutor(), id, paramObject, pageSize);
}