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, setTemplate
public VdsStatistics get(Guid id)
ReadDao
get
in interface ReadDao<VdsStatistics,Guid>
id
- The id to look by (can't be null
).null
if not found.public void save(VdsStatistics stats)
ModificationDao
save
in interface ModificationDao<VdsStatistics,Guid>
stats
- The entity to persist (can't be null
).public void update(VdsStatistics stats)
ModificationDao
update
in interface ModificationDao<VdsStatistics,Guid>
stats
- The entity instance, containing data to update (can't be null
).public void remove(Guid id)
ModificationDao
remove
in interface ModificationDao<VdsStatistics,Guid>
id
- The id of the entity to remove (can't be null
).public List<VdsStatistics> getAll()
ReadDao
T
.getAll
in interface ReadDao<VdsStatistics,Guid>
Copyright © 2012. All Rights Reserved.