Package com.soffid.iam.model
Interface ScheduledTaskLogEntityDao
-
- All Known Implementing Classes:
ScheduledTaskLogEntityDaoBase
,ScheduledTaskLogEntityDaoImpl
public interface ScheduledTaskLogEntityDao
DAO for Entity ScheduledTaskLogEntity- See Also:
ScheduledTaskLogEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
create(ScheduledTaskLogEntity entity)
Adds an instance ofScheduledTaskLogEntity
to the persistent store.void
create(Collection<? extends ScheduledTaskLogEntity> entities)
Creates a collection ofScheduledTaskLogEntity
and adds it to the persistent store.ScheduledTaskLogEntity
load(Long id)
Loads an instance ofScheduledTaskLogEntity
from the persistent store.List<ScheduledTaskLogEntity>
loadAll()
Loads all instances ofScheduledTaskLogEntity
from the persistent store.ScheduledTaskLogEntity
newScheduledTaskLogEntity()
Creates an instance ofScheduledTaskLogEntity
.List<ScheduledTaskLogEntity>
query(String query, Parameter[] parameters)
Query ofScheduledTaskLogEntity
from the persistent store.List<ScheduledTaskLogEntity>
query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofScheduledTaskLogEntity
from the persistent store.void
remove(ScheduledTaskLogEntity entity)
Removes an instance ofScheduledTaskLogEntity
from the persistent store.void
remove(Long id)
Removes an instance ofScheduledTaskLogEntity
from the persistent store.void
remove(Collection<? extends ScheduledTaskLogEntity> entities)
Removes a collection ofScheduledTaskLogEntity
from the persistent store.ScheduledTaskLogEntity
scheduledTaskLogToEntity(com.soffid.iam.api.ScheduledTaskLog instance)
Transforms fromScheduledTaskLog
objectvoid
scheduledTaskLogToEntity(com.soffid.iam.api.ScheduledTaskLog source, ScheduledTaskLogEntity target, boolean copyIfNull)
Copy data fromScheduledTaskLog
objectList<ScheduledTaskLogEntity>
scheduledTaskLogToEntityList(Collection<com.soffid.iam.api.ScheduledTaskLog> instances)
Transforms fromScheduledTaskLog
listcom.soffid.iam.api.ScheduledTaskLog
toScheduledTaskLog(ScheduledTaskLogEntity entity)
Transforms toScheduledTaskLog
objectvoid
toScheduledTaskLog(ScheduledTaskLogEntity source, com.soffid.iam.api.ScheduledTaskLog target)
Copy data toScheduledTaskLog
objectList<com.soffid.iam.api.ScheduledTaskLog>
toScheduledTaskLogList(Collection<ScheduledTaskLogEntity> entities)
Transforms toScheduledTaskLog
listvoid
update(ScheduledTaskLogEntity entity)
Updates an instance ofScheduledTaskLogEntity
at the persistent store.void
update(Collection<? extends ScheduledTaskLogEntity> entities)
Updates a collection ofScheduledTaskLogEntity
in the persistent store.
-
-
-
Method Detail
-
toScheduledTaskLog
void toScheduledTaskLog(ScheduledTaskLogEntity source, com.soffid.iam.api.ScheduledTaskLog target)
Copy data toScheduledTaskLog
object
-
toScheduledTaskLog
com.soffid.iam.api.ScheduledTaskLog toScheduledTaskLog(ScheduledTaskLogEntity entity)
Transforms toScheduledTaskLog
object
-
toScheduledTaskLogList
List<com.soffid.iam.api.ScheduledTaskLog> toScheduledTaskLogList(Collection<ScheduledTaskLogEntity> entities)
Transforms toScheduledTaskLog
list
-
scheduledTaskLogToEntity
void scheduledTaskLogToEntity(com.soffid.iam.api.ScheduledTaskLog source, ScheduledTaskLogEntity target, boolean copyIfNull)
Copy data fromScheduledTaskLog
object
-
scheduledTaskLogToEntity
ScheduledTaskLogEntity scheduledTaskLogToEntity(com.soffid.iam.api.ScheduledTaskLog instance)
Transforms fromScheduledTaskLog
object
-
scheduledTaskLogToEntityList
List<ScheduledTaskLogEntity> scheduledTaskLogToEntityList(Collection<com.soffid.iam.api.ScheduledTaskLog> instances)
Transforms fromScheduledTaskLog
list
-
newScheduledTaskLogEntity
ScheduledTaskLogEntity newScheduledTaskLogEntity()
Creates an instance ofScheduledTaskLogEntity
.
-
create
void create(ScheduledTaskLogEntity entity)
Adds an instance ofScheduledTaskLogEntity
to the persistent store.
-
update
void update(ScheduledTaskLogEntity entity)
Updates an instance ofScheduledTaskLogEntity
at the persistent store.
-
remove
void remove(ScheduledTaskLogEntity entity)
Removes an instance ofScheduledTaskLogEntity
from the persistent store.
-
load
ScheduledTaskLogEntity load(Long id)
Loads an instance ofScheduledTaskLogEntity
from the persistent store.
-
loadAll
List<ScheduledTaskLogEntity> loadAll()
Loads all instances ofScheduledTaskLogEntity
from the persistent store.
-
create
void create(Collection<? extends ScheduledTaskLogEntity> entities)
Creates a collection ofScheduledTaskLogEntity
and adds it to the persistent store.
-
update
void update(Collection<? extends ScheduledTaskLogEntity> entities)
Updates a collection ofScheduledTaskLogEntity
in the persistent store.
-
remove
void remove(Collection<? extends ScheduledTaskLogEntity> entities)
Removes a collection ofScheduledTaskLogEntity
from the persistent store.
-
remove
void remove(Long id)
Removes an instance ofScheduledTaskLogEntity
from the persistent store.
-
query
List<ScheduledTaskLogEntity> query(String query, Parameter[] parameters)
Query ofScheduledTaskLogEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<ScheduledTaskLogEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofScheduledTaskLogEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-