Package com.soffid.iam.model
Interface HostServiceEntityDao
-
- All Known Implementing Classes:
HostServiceEntityDaoBase
,HostServiceEntityDaoImpl
public interface HostServiceEntityDao
DAO for Entity HostServiceEntity- See Also:
HostServiceEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
create(HostServiceEntity entity)
Adds an instance ofHostServiceEntity
to the persistent store.void
create(Collection<? extends HostServiceEntity> entities)
Creates a collection ofHostServiceEntity
and adds it to the persistent store.HostServiceEntity
hostServiceToEntity(com.soffid.iam.api.HostService instance)
Transforms fromHostService
objectvoid
hostServiceToEntity(com.soffid.iam.api.HostService source, HostServiceEntity target, boolean copyIfNull)
Copy data fromHostService
objectList<HostServiceEntity>
hostServiceToEntityList(Collection<com.soffid.iam.api.HostService> instances)
Transforms fromHostService
listHostServiceEntity
load(Long id)
Loads an instance ofHostServiceEntity
from the persistent store.List<HostServiceEntity>
loadAll()
Loads all instances ofHostServiceEntity
from the persistent store.HostServiceEntity
newHostServiceEntity()
Creates an instance ofHostServiceEntity
.List<HostServiceEntity>
query(String query, Parameter[] parameters)
Query ofHostServiceEntity
from the persistent store.List<HostServiceEntity>
query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofHostServiceEntity
from the persistent store.void
remove(HostServiceEntity entity)
Removes an instance ofHostServiceEntity
from the persistent store.void
remove(Long id)
Removes an instance ofHostServiceEntity
from the persistent store.void
remove(Collection<? extends HostServiceEntity> entities)
Removes a collection ofHostServiceEntity
from the persistent store.com.soffid.iam.api.HostService
toHostService(HostServiceEntity entity)
Transforms toHostService
objectvoid
toHostService(HostServiceEntity source, com.soffid.iam.api.HostService target)
Copy data toHostService
objectList<com.soffid.iam.api.HostService>
toHostServiceList(Collection<HostServiceEntity> entities)
Transforms toHostService
listvoid
update(HostServiceEntity entity)
Updates an instance ofHostServiceEntity
at the persistent store.void
update(Collection<? extends HostServiceEntity> entities)
Updates a collection ofHostServiceEntity
in the persistent store.
-
-
-
Method Detail
-
toHostService
void toHostService(HostServiceEntity source, com.soffid.iam.api.HostService target)
Copy data toHostService
object
-
toHostService
com.soffid.iam.api.HostService toHostService(HostServiceEntity entity)
Transforms toHostService
object
-
toHostServiceList
List<com.soffid.iam.api.HostService> toHostServiceList(Collection<HostServiceEntity> entities)
Transforms toHostService
list
-
hostServiceToEntity
void hostServiceToEntity(com.soffid.iam.api.HostService source, HostServiceEntity target, boolean copyIfNull)
Copy data fromHostService
object
-
hostServiceToEntity
HostServiceEntity hostServiceToEntity(com.soffid.iam.api.HostService instance)
Transforms fromHostService
object
-
hostServiceToEntityList
List<HostServiceEntity> hostServiceToEntityList(Collection<com.soffid.iam.api.HostService> instances)
Transforms fromHostService
list
-
newHostServiceEntity
HostServiceEntity newHostServiceEntity()
Creates an instance ofHostServiceEntity
.
-
create
void create(HostServiceEntity entity)
Adds an instance ofHostServiceEntity
to the persistent store.
-
update
void update(HostServiceEntity entity)
Updates an instance ofHostServiceEntity
at the persistent store.
-
remove
void remove(HostServiceEntity entity)
Removes an instance ofHostServiceEntity
from the persistent store.
-
load
HostServiceEntity load(Long id)
Loads an instance ofHostServiceEntity
from the persistent store.
-
loadAll
List<HostServiceEntity> loadAll()
Loads all instances ofHostServiceEntity
from the persistent store.
-
create
void create(Collection<? extends HostServiceEntity> entities)
Creates a collection ofHostServiceEntity
and adds it to the persistent store.
-
update
void update(Collection<? extends HostServiceEntity> entities)
Updates a collection ofHostServiceEntity
in the persistent store.
-
remove
void remove(Collection<? extends HostServiceEntity> entities)
Removes a collection ofHostServiceEntity
from the persistent store.
-
remove
void remove(Long id)
Removes an instance ofHostServiceEntity
from the persistent store.
-
query
List<HostServiceEntity> query(String query, Parameter[] parameters)
Query ofHostServiceEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<HostServiceEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofHostServiceEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-