Package com.soffid.iam.model
Interface ScheduledTaskHandlerEntityDao
-
- All Known Implementing Classes:
ScheduledTaskHandlerEntityDaoBase,ScheduledTaskHandlerEntityDaoImpl
public interface ScheduledTaskHandlerEntityDaoDAO for Entity ScheduledTaskHandlerEntity- See Also:
ScheduledTaskHandlerEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(ScheduledTaskHandlerEntity entity)Adds an instance ofScheduledTaskHandlerEntityto the persistent store.voidcreate(Collection<? extends ScheduledTaskHandlerEntity> entities)Creates a collection ofScheduledTaskHandlerEntityand adds it to the persistent store.ScheduledTaskHandlerEntityfindByName(CriteriaSearchConfiguration criteria, String name)CriteriaSearchConfiguration finderScheduledTaskHandlerEntityfindByName(String name)Operation findByNameScheduledTaskHandlerEntityload(Long id)Loads an instance ofScheduledTaskHandlerEntityfrom the persistent store.List<ScheduledTaskHandlerEntity>loadAll()Loads all instances ofScheduledTaskHandlerEntityfrom the persistent store.ScheduledTaskHandlerEntitynewScheduledTaskHandlerEntity()Creates an instance ofScheduledTaskHandlerEntity.List<ScheduledTaskHandlerEntity>query(String query, Parameter[] parameters)Query ofScheduledTaskHandlerEntityfrom the persistent store.List<ScheduledTaskHandlerEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofScheduledTaskHandlerEntityfrom the persistent store.voidremove(ScheduledTaskHandlerEntity entity)Removes an instance ofScheduledTaskHandlerEntityfrom the persistent store.voidremove(Long id)Removes an instance ofScheduledTaskHandlerEntityfrom the persistent store.voidremove(Collection<? extends ScheduledTaskHandlerEntity> entities)Removes a collection ofScheduledTaskHandlerEntityfrom the persistent store.ScheduledTaskHandlerEntityscheduledTaskHandlerToEntity(com.soffid.iam.api.ScheduledTaskHandler instance)Transforms fromScheduledTaskHandlerobjectvoidscheduledTaskHandlerToEntity(com.soffid.iam.api.ScheduledTaskHandler source, ScheduledTaskHandlerEntity target, boolean copyIfNull)Copy data fromScheduledTaskHandlerobjectList<ScheduledTaskHandlerEntity>scheduledTaskHandlerToEntityList(Collection<com.soffid.iam.api.ScheduledTaskHandler> instances)Transforms fromScheduledTaskHandlerlistcom.soffid.iam.api.ScheduledTaskHandlertoScheduledTaskHandler(ScheduledTaskHandlerEntity entity)Transforms toScheduledTaskHandlerobjectvoidtoScheduledTaskHandler(ScheduledTaskHandlerEntity source, com.soffid.iam.api.ScheduledTaskHandler target)Copy data toScheduledTaskHandlerobjectList<com.soffid.iam.api.ScheduledTaskHandler>toScheduledTaskHandlerList(Collection<ScheduledTaskHandlerEntity> entities)Transforms toScheduledTaskHandlerlistvoidupdate(ScheduledTaskHandlerEntity entity)Updates an instance ofScheduledTaskHandlerEntityat the persistent store.voidupdate(Collection<? extends ScheduledTaskHandlerEntity> entities)Updates a collection ofScheduledTaskHandlerEntityin the persistent store.
-
-
-
Method Detail
-
findByName
ScheduledTaskHandlerEntity findByName(String name)
Operation findByName- Parameters:
name-- Returns:
-
findByName
ScheduledTaskHandlerEntity findByName(CriteriaSearchConfiguration criteria, String name)
CriteriaSearchConfiguration finder
-
toScheduledTaskHandler
void toScheduledTaskHandler(ScheduledTaskHandlerEntity source, com.soffid.iam.api.ScheduledTaskHandler target)
Copy data toScheduledTaskHandlerobject
-
toScheduledTaskHandler
com.soffid.iam.api.ScheduledTaskHandler toScheduledTaskHandler(ScheduledTaskHandlerEntity entity)
Transforms toScheduledTaskHandlerobject
-
toScheduledTaskHandlerList
List<com.soffid.iam.api.ScheduledTaskHandler> toScheduledTaskHandlerList(Collection<ScheduledTaskHandlerEntity> entities)
Transforms toScheduledTaskHandlerlist
-
scheduledTaskHandlerToEntity
void scheduledTaskHandlerToEntity(com.soffid.iam.api.ScheduledTaskHandler source, ScheduledTaskHandlerEntity target, boolean copyIfNull)Copy data fromScheduledTaskHandlerobject
-
scheduledTaskHandlerToEntity
ScheduledTaskHandlerEntity scheduledTaskHandlerToEntity(com.soffid.iam.api.ScheduledTaskHandler instance)
Transforms fromScheduledTaskHandlerobject
-
scheduledTaskHandlerToEntityList
List<ScheduledTaskHandlerEntity> scheduledTaskHandlerToEntityList(Collection<com.soffid.iam.api.ScheduledTaskHandler> instances)
Transforms fromScheduledTaskHandlerlist
-
newScheduledTaskHandlerEntity
ScheduledTaskHandlerEntity newScheduledTaskHandlerEntity()
Creates an instance ofScheduledTaskHandlerEntity.
-
create
void create(ScheduledTaskHandlerEntity entity)
Adds an instance ofScheduledTaskHandlerEntityto the persistent store.
-
update
void update(ScheduledTaskHandlerEntity entity)
Updates an instance ofScheduledTaskHandlerEntityat the persistent store.
-
remove
void remove(ScheduledTaskHandlerEntity entity)
Removes an instance ofScheduledTaskHandlerEntityfrom the persistent store.
-
load
ScheduledTaskHandlerEntity load(Long id)
Loads an instance ofScheduledTaskHandlerEntityfrom the persistent store.
-
loadAll
List<ScheduledTaskHandlerEntity> loadAll()
Loads all instances ofScheduledTaskHandlerEntityfrom the persistent store.
-
create
void create(Collection<? extends ScheduledTaskHandlerEntity> entities)
Creates a collection ofScheduledTaskHandlerEntityand adds it to the persistent store.
-
update
void update(Collection<? extends ScheduledTaskHandlerEntity> entities)
Updates a collection ofScheduledTaskHandlerEntityin the persistent store.
-
remove
void remove(Collection<? extends ScheduledTaskHandlerEntity> entities)
Removes a collection ofScheduledTaskHandlerEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofScheduledTaskHandlerEntityfrom the persistent store.
-
query
List<ScheduledTaskHandlerEntity> query(String query, Parameter[] parameters)
Query ofScheduledTaskHandlerEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<ScheduledTaskHandlerEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofScheduledTaskHandlerEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-