
public interface TransferDAO extends AbstractDAO<Transfer>
| Modifier and Type | Method and Description |
|---|---|
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
filters - List of filterDAOConnectionException - 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
filters - List of filterDAOConnectionException - If data access error occursList<Transfer> find(List<Filter> filters, String column, boolean ascend, int limit) throws DAOConnectionException
filters - List of filterDAOConnectionException - If data access error occursList<Transfer> find(List<Filter> filters, String column, boolean ascend, int limit, int offset) throws DAOConnectionException
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–2020 Waarp. All rights reserved.