public class VdsStatisticsDAODbFacadeImpl extends BaseDAODbFacade implements VdsStatisticsDAO
dbFacade, dialect, jdbcTemplate, RETURN_VALUE_PARAMETER| Constructor and Description |
|---|
VdsStatisticsDAODbFacadeImpl() |
| Modifier and Type | Method and Description |
|---|---|
VdsStatistics |
get(Guid id)
Retrieves the entity with the given id.
|
List<VdsStatistics> |
getAll()
Retrieves all the entities of type
T. |
void |
remove(Guid id)
Removes the entity with the given id from the underlying store of data.
|
void |
save(VdsStatistics stats)
Persist a new instance of the entity.
|
void |
update(VdsStatistics stats)
Update an existing entity with data from the given instance.
|
getCallsHandler, getCustomMapSqlParameterSource, setDbFacade, setDialect, setTemplatepublic VdsStatistics get(Guid id)
ReadDaoget in interface ReadDao<VdsStatistics,Guid>id - The id to look by (can't be null).null if not found.public void save(VdsStatistics stats)
ModificationDaosave in interface ModificationDao<VdsStatistics,Guid>stats - The entity to persist (can't be null).public void update(VdsStatistics stats)
ModificationDaoupdate in interface ModificationDao<VdsStatistics,Guid>stats - The entity instance, containing data to update (can't be null).public void remove(Guid id)
ModificationDaoremove in interface ModificationDao<VdsStatistics,Guid>id - The id of the entity to remove (can't be null).public List<VdsStatistics> getAll()
ReadDaoT.getAll in interface ReadDao<VdsStatistics,Guid>Copyright © 2012. All Rights Reserved.