
public interface TransferDAO extends AbstractDAO<Transfer>
| Modifier and Type | Method and Description |
|---|---|
long |
count(List<Filter> filters)
Retrieve Transfer objects count with the given filters
|
boolean |
exist(long id,
String requester,
String requested,
String owner)
Verify if a Transfer object with the specified Special ID exists in the
persistance layer
|
List<Transfer> |
find(List<Filter> filters,
int limit)
Retrieve all Transfer objects to the given filters in a List from the
persistance layer
|
List<Transfer> |
find(List<Filter> filters,
int limit,
int offset)
Retrieve all Transfer objects to the given filters in a List from the
persistance layer
|
List<Transfer> |
find(List<Filter> filters,
String column,
boolean ascend)
Retrieve all Transfer objects to the given filters in a List from the
persistance layer
|
List<Transfer> |
find(List<Filter> filters,
String column,
boolean ascend,
int limit)
Retrieve all Transfer objects to the given filters in a List from the
persistance layer
|
List<Transfer> |
find(List<Filter> filters,
String column,
boolean ascend,
int limit,
int offset)
Retrieve all Transfer objects to the given filters in a List from the
persistance layer
|
Transfer |
select(long id,
String requester,
String requested,
String owner)
Retrieve the Transfer object with the specified Special ID from the
persistance layer
|
List<Transfer> find(List<Filter> filters, int limit) throws DAOConnectionException
find in interface AbstractDAO<Transfer>filters - List of filterlimit - max number of items to getDAOConnectionException - If data access error occursList<Transfer> find(List<Filter> filters, int limit, int offset) throws DAOConnectionException
filters - List of filterDAOConnectionException - If data access error occursList<Transfer> find(List<Filter> filters, String column, boolean ascend) throws DAOConnectionException
find in interface AbstractDAO<Transfer>filters - List of filtercolumn - field to sort onascend - True for ascending, False for descending orderDAOConnectionException - If data access error occursList<Transfer> find(List<Filter> filters, String column, boolean ascend, int limit) throws DAOConnectionException
find in interface AbstractDAO<Transfer>filters - List of filtercolumn - field to sort onascend - True for ascending, False for descending orderlimit - max number of items to getDAOConnectionException - If data access error occursList<Transfer> find(List<Filter> filters, String column, boolean ascend, int limit, int offset) throws DAOConnectionException
find in interface AbstractDAO<Transfer>filters - List of filtercolumn - field to sort onascend - True for ascending, False for descending orderlimit - max number of items to getoffset - start for items to getDAOConnectionException - If data access error occurslong count(List<Filter> filters) throws DAOConnectionException
count in interface AbstractDAO<Transfer>filters - List of filterDAOConnectionException - If data access error occursTransfer select(long id, String requester, String requested, String owner) throws DAOConnectionException, DAONoDataException
id - special ID of the Transfer object requestedDAOConnectionException - If a data access error occursDAONoDataException - if no data are availableboolean exist(long id,
String requester,
String requested,
String owner)
throws DAOConnectionException
id - special ID of the Transfer object verifiedDAOConnectionException - If a data access error occursCopyright © 2009–2022 Waarp. All rights reserved.