Package adams.db
Interface FilteredDataProvider<T extends DataContainer>
-
- Type Parameters:
T
- the type of container to use
- All Superinterfaces:
DatabaseConnectionProvider
,DatabaseConnectionUser
,DataProvider<T>
public interface FilteredDataProvider<T extends DataContainer> extends DataProvider<T>
Interface for data providers that normally returned the data filtered.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
loadRaw(int auto_id)
Load a data container with given auto_id, without passing it through the global filter.-
Methods inherited from interface adams.db.DatabaseConnectionProvider
getDatabaseConnection
-
-
-
-
Method Detail
-
loadRaw
T loadRaw(int auto_id)
Load a data container with given auto_id, without passing it through the global filter.- Parameters:
auto_id
- the databae ID- Returns:
- the data container, or null if not found
-
-