Package com.soffid.iam.model
Interface ScheduledTaskHandlerEntityDao
-
- All Known Implementing Classes:
ScheduledTaskHandlerEntityDaoBase
,ScheduledTaskHandlerEntityDaoImpl
public interface ScheduledTaskHandlerEntityDao
DAO for Entity ScheduledTaskHandlerEntity- See Also:
ScheduledTaskHandlerEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
create(ScheduledTaskHandlerEntity entity)
Adds an instance ofScheduledTaskHandlerEntity
to the persistent store.void
create(Collection<? extends ScheduledTaskHandlerEntity> entities)
Creates a collection ofScheduledTaskHandlerEntity
and adds it to the persistent store.ScheduledTaskHandlerEntity
findByName(CriteriaSearchConfiguration criteria, String name)
CriteriaSearchConfiguration finderScheduledTaskHandlerEntity
findByName(String name)
Operation findByNameScheduledTaskHandlerEntity
load(Long id)
Loads an instance ofScheduledTaskHandlerEntity
from the persistent store.List<ScheduledTaskHandlerEntity>
loadAll()
Loads all instances ofScheduledTaskHandlerEntity
from the persistent store.ScheduledTaskHandlerEntity
newScheduledTaskHandlerEntity()
Creates an instance ofScheduledTaskHandlerEntity
.List<ScheduledTaskHandlerEntity>
query(String query, Parameter[] parameters)
Query ofScheduledTaskHandlerEntity
from the persistent store.List<ScheduledTaskHandlerEntity>
query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofScheduledTaskHandlerEntity
from the persistent store.void
remove(ScheduledTaskHandlerEntity entity)
Removes an instance ofScheduledTaskHandlerEntity
from the persistent store.void
remove(Long id)
Removes an instance ofScheduledTaskHandlerEntity
from the persistent store.void
remove(Collection<? extends ScheduledTaskHandlerEntity> entities)
Removes a collection ofScheduledTaskHandlerEntity
from the persistent store.ScheduledTaskHandlerEntity
scheduledTaskHandlerToEntity(com.soffid.iam.api.ScheduledTaskHandler instance)
Transforms fromScheduledTaskHandler
objectvoid
scheduledTaskHandlerToEntity(com.soffid.iam.api.ScheduledTaskHandler source, ScheduledTaskHandlerEntity target, boolean copyIfNull)
Copy data fromScheduledTaskHandler
objectList<ScheduledTaskHandlerEntity>
scheduledTaskHandlerToEntityList(Collection<com.soffid.iam.api.ScheduledTaskHandler> instances)
Transforms fromScheduledTaskHandler
listcom.soffid.iam.api.ScheduledTaskHandler
toScheduledTaskHandler(ScheduledTaskHandlerEntity entity)
Transforms toScheduledTaskHandler
objectvoid
toScheduledTaskHandler(ScheduledTaskHandlerEntity source, com.soffid.iam.api.ScheduledTaskHandler target)
Copy data toScheduledTaskHandler
objectList<com.soffid.iam.api.ScheduledTaskHandler>
toScheduledTaskHandlerList(Collection<ScheduledTaskHandlerEntity> entities)
Transforms toScheduledTaskHandler
listvoid
update(ScheduledTaskHandlerEntity entity)
Updates an instance ofScheduledTaskHandlerEntity
at the persistent store.void
update(Collection<? extends ScheduledTaskHandlerEntity> entities)
Updates a collection ofScheduledTaskHandlerEntity
in 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 toScheduledTaskHandler
object
-
toScheduledTaskHandler
com.soffid.iam.api.ScheduledTaskHandler toScheduledTaskHandler(ScheduledTaskHandlerEntity entity)
Transforms toScheduledTaskHandler
object
-
toScheduledTaskHandlerList
List<com.soffid.iam.api.ScheduledTaskHandler> toScheduledTaskHandlerList(Collection<ScheduledTaskHandlerEntity> entities)
Transforms toScheduledTaskHandler
list
-
scheduledTaskHandlerToEntity
void scheduledTaskHandlerToEntity(com.soffid.iam.api.ScheduledTaskHandler source, ScheduledTaskHandlerEntity target, boolean copyIfNull)
Copy data fromScheduledTaskHandler
object
-
scheduledTaskHandlerToEntity
ScheduledTaskHandlerEntity scheduledTaskHandlerToEntity(com.soffid.iam.api.ScheduledTaskHandler instance)
Transforms fromScheduledTaskHandler
object
-
scheduledTaskHandlerToEntityList
List<ScheduledTaskHandlerEntity> scheduledTaskHandlerToEntityList(Collection<com.soffid.iam.api.ScheduledTaskHandler> instances)
Transforms fromScheduledTaskHandler
list
-
newScheduledTaskHandlerEntity
ScheduledTaskHandlerEntity newScheduledTaskHandlerEntity()
Creates an instance ofScheduledTaskHandlerEntity
.
-
create
void create(ScheduledTaskHandlerEntity entity)
Adds an instance ofScheduledTaskHandlerEntity
to the persistent store.
-
update
void update(ScheduledTaskHandlerEntity entity)
Updates an instance ofScheduledTaskHandlerEntity
at the persistent store.
-
remove
void remove(ScheduledTaskHandlerEntity entity)
Removes an instance ofScheduledTaskHandlerEntity
from the persistent store.
-
load
ScheduledTaskHandlerEntity load(Long id)
Loads an instance ofScheduledTaskHandlerEntity
from the persistent store.
-
loadAll
List<ScheduledTaskHandlerEntity> loadAll()
Loads all instances ofScheduledTaskHandlerEntity
from the persistent store.
-
create
void create(Collection<? extends ScheduledTaskHandlerEntity> entities)
Creates a collection ofScheduledTaskHandlerEntity
and adds it to the persistent store.
-
update
void update(Collection<? extends ScheduledTaskHandlerEntity> entities)
Updates a collection ofScheduledTaskHandlerEntity
in the persistent store.
-
remove
void remove(Collection<? extends ScheduledTaskHandlerEntity> entities)
Removes a collection ofScheduledTaskHandlerEntity
from the persistent store.
-
remove
void remove(Long id)
Removes an instance ofScheduledTaskHandlerEntity
from the persistent store.
-
query
List<ScheduledTaskHandlerEntity> query(String query, Parameter[] parameters)
Query ofScheduledTaskHandlerEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<ScheduledTaskHandlerEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofScheduledTaskHandlerEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-