Package com.soffid.iam.model
Interface StatsEntityDao
-
- All Known Implementing Classes:
StatsEntityDaoBase
,StatsEntityDaoImpl
public interface StatsEntityDao
DAO for Entity StatsEntity- See Also:
StatsEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
create(StatsEntity entity)
Adds an instance ofStatsEntity
to the persistent store.void
create(Collection<? extends StatsEntity> entities)
Creates a collection ofStatsEntity
and adds it to the persistent store.Collection<StatsEntity>
findByName(CriteriaSearchConfiguration criteria, String name, String since, String until)
CriteriaSearchConfiguration finderCollection<StatsEntity>
findByName(String name, String since, String until)
Operation findByNameStatsEntity
load(Long id)
Loads an instance ofStatsEntity
from the persistent store.List<StatsEntity>
loadAll()
Loads all instances ofStatsEntity
from the persistent store.StatsEntity
newStatsEntity()
Creates an instance ofStatsEntity
.void
purge(int days)
Operation purgeList<StatsEntity>
query(String query, Parameter[] parameters)
Query ofStatsEntity
from the persistent store.List<StatsEntity>
query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofStatsEntity
from the persistent store.void
remove(StatsEntity entity)
Removes an instance ofStatsEntity
from the persistent store.void
remove(Long id)
Removes an instance ofStatsEntity
from the persistent store.void
remove(Collection<? extends StatsEntity> entities)
Removes a collection ofStatsEntity
from the persistent store.void
update(StatsEntity entity)
Updates an instance ofStatsEntity
at the persistent store.void
update(Collection<? extends StatsEntity> entities)
Updates a collection ofStatsEntity
in the persistent store.
-
-
-
Method Detail
-
findByName
Collection<StatsEntity> findByName(String name, String since, String until)
Operation findByName- Parameters:
name
-since
-until
-- Returns:
-
findByName
Collection<StatsEntity> findByName(CriteriaSearchConfiguration criteria, String name, String since, String until)
CriteriaSearchConfiguration finder
-
purge
void purge(int days) throws es.caib.seycon.ng.exception.InternalErrorException
Operation purge- Parameters:
days
-- Throws:
es.caib.seycon.ng.exception.InternalErrorException
-
newStatsEntity
StatsEntity newStatsEntity()
Creates an instance ofStatsEntity
.
-
create
void create(StatsEntity entity)
Adds an instance ofStatsEntity
to the persistent store.
-
update
void update(StatsEntity entity)
Updates an instance ofStatsEntity
at the persistent store.
-
remove
void remove(StatsEntity entity)
Removes an instance ofStatsEntity
from the persistent store.
-
load
StatsEntity load(Long id)
Loads an instance ofStatsEntity
from the persistent store.
-
loadAll
List<StatsEntity> loadAll()
Loads all instances ofStatsEntity
from the persistent store.
-
create
void create(Collection<? extends StatsEntity> entities)
Creates a collection ofStatsEntity
and adds it to the persistent store.
-
update
void update(Collection<? extends StatsEntity> entities)
Updates a collection ofStatsEntity
in the persistent store.
-
remove
void remove(Collection<? extends StatsEntity> entities)
Removes a collection ofStatsEntity
from the persistent store.
-
remove
void remove(Long id)
Removes an instance ofStatsEntity
from the persistent store.
-
query
List<StatsEntity> query(String query, Parameter[] parameters)
Query ofStatsEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<StatsEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofStatsEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-