Package com.soffid.iam.model
Interface ScheduledTaskLogEntityDao
-
- All Known Implementing Classes:
ScheduledTaskLogEntityDaoBase,ScheduledTaskLogEntityDaoImpl
public interface ScheduledTaskLogEntityDaoDAO for Entity ScheduledTaskLogEntity- See Also:
ScheduledTaskLogEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(ScheduledTaskLogEntity entity)Adds an instance ofScheduledTaskLogEntityto the persistent store.voidcreate(Collection<? extends ScheduledTaskLogEntity> entities)Creates a collection ofScheduledTaskLogEntityand adds it to the persistent store.ScheduledTaskLogEntityload(Long id)Loads an instance ofScheduledTaskLogEntityfrom the persistent store.List<ScheduledTaskLogEntity>loadAll()Loads all instances ofScheduledTaskLogEntityfrom the persistent store.ScheduledTaskLogEntitynewScheduledTaskLogEntity()Creates an instance ofScheduledTaskLogEntity.List<ScheduledTaskLogEntity>query(String query, Parameter[] parameters)Query ofScheduledTaskLogEntityfrom the persistent store.List<ScheduledTaskLogEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofScheduledTaskLogEntityfrom the persistent store.voidremove(ScheduledTaskLogEntity entity)Removes an instance ofScheduledTaskLogEntityfrom the persistent store.voidremove(Long id)Removes an instance ofScheduledTaskLogEntityfrom the persistent store.voidremove(Collection<? extends ScheduledTaskLogEntity> entities)Removes a collection ofScheduledTaskLogEntityfrom the persistent store.ScheduledTaskLogEntityscheduledTaskLogToEntity(com.soffid.iam.api.ScheduledTaskLog instance)Transforms fromScheduledTaskLogobjectvoidscheduledTaskLogToEntity(com.soffid.iam.api.ScheduledTaskLog source, ScheduledTaskLogEntity target, boolean copyIfNull)Copy data fromScheduledTaskLogobjectList<ScheduledTaskLogEntity>scheduledTaskLogToEntityList(Collection<com.soffid.iam.api.ScheduledTaskLog> instances)Transforms fromScheduledTaskLoglistcom.soffid.iam.api.ScheduledTaskLogtoScheduledTaskLog(ScheduledTaskLogEntity entity)Transforms toScheduledTaskLogobjectvoidtoScheduledTaskLog(ScheduledTaskLogEntity source, com.soffid.iam.api.ScheduledTaskLog target)Copy data toScheduledTaskLogobjectList<com.soffid.iam.api.ScheduledTaskLog>toScheduledTaskLogList(Collection<ScheduledTaskLogEntity> entities)Transforms toScheduledTaskLoglistvoidupdate(ScheduledTaskLogEntity entity)Updates an instance ofScheduledTaskLogEntityat the persistent store.voidupdate(Collection<? extends ScheduledTaskLogEntity> entities)Updates a collection ofScheduledTaskLogEntityin the persistent store.
-
-
-
Method Detail
-
toScheduledTaskLog
void toScheduledTaskLog(ScheduledTaskLogEntity source, com.soffid.iam.api.ScheduledTaskLog target)
Copy data toScheduledTaskLogobject
-
toScheduledTaskLog
com.soffid.iam.api.ScheduledTaskLog toScheduledTaskLog(ScheduledTaskLogEntity entity)
Transforms toScheduledTaskLogobject
-
toScheduledTaskLogList
List<com.soffid.iam.api.ScheduledTaskLog> toScheduledTaskLogList(Collection<ScheduledTaskLogEntity> entities)
Transforms toScheduledTaskLoglist
-
scheduledTaskLogToEntity
void scheduledTaskLogToEntity(com.soffid.iam.api.ScheduledTaskLog source, ScheduledTaskLogEntity target, boolean copyIfNull)Copy data fromScheduledTaskLogobject
-
scheduledTaskLogToEntity
ScheduledTaskLogEntity scheduledTaskLogToEntity(com.soffid.iam.api.ScheduledTaskLog instance)
Transforms fromScheduledTaskLogobject
-
scheduledTaskLogToEntityList
List<ScheduledTaskLogEntity> scheduledTaskLogToEntityList(Collection<com.soffid.iam.api.ScheduledTaskLog> instances)
Transforms fromScheduledTaskLoglist
-
newScheduledTaskLogEntity
ScheduledTaskLogEntity newScheduledTaskLogEntity()
Creates an instance ofScheduledTaskLogEntity.
-
create
void create(ScheduledTaskLogEntity entity)
Adds an instance ofScheduledTaskLogEntityto the persistent store.
-
update
void update(ScheduledTaskLogEntity entity)
Updates an instance ofScheduledTaskLogEntityat the persistent store.
-
remove
void remove(ScheduledTaskLogEntity entity)
Removes an instance ofScheduledTaskLogEntityfrom the persistent store.
-
load
ScheduledTaskLogEntity load(Long id)
Loads an instance ofScheduledTaskLogEntityfrom the persistent store.
-
loadAll
List<ScheduledTaskLogEntity> loadAll()
Loads all instances ofScheduledTaskLogEntityfrom the persistent store.
-
create
void create(Collection<? extends ScheduledTaskLogEntity> entities)
Creates a collection ofScheduledTaskLogEntityand adds it to the persistent store.
-
update
void update(Collection<? extends ScheduledTaskLogEntity> entities)
Updates a collection ofScheduledTaskLogEntityin the persistent store.
-
remove
void remove(Collection<? extends ScheduledTaskLogEntity> entities)
Removes a collection ofScheduledTaskLogEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofScheduledTaskLogEntityfrom the persistent store.
-
query
List<ScheduledTaskLogEntity> query(String query, Parameter[] parameters)
Query ofScheduledTaskLogEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<ScheduledTaskLogEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofScheduledTaskLogEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-