Package com.soffid.iam.model
Interface HostSystemEntityDao
-
- All Known Implementing Classes:
HostSystemEntityDaoBase
,HostSystemEntityDaoImpl
public interface HostSystemEntityDao
DAO for Entity HostSystemEntity- See Also:
HostSystemEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
create(HostSystemEntity entity)
Adds an instance ofHostSystemEntity
to the persistent store.void
create(Collection<? extends HostSystemEntity> entities)
Creates a collection ofHostSystemEntity
and adds it to the persistent store.HostSystemEntity
load(Long id)
Loads an instance ofHostSystemEntity
from the persistent store.List<HostSystemEntity>
loadAll()
Loads all instances ofHostSystemEntity
from the persistent store.HostSystemEntity
newHostSystemEntity()
Creates an instance ofHostSystemEntity
.List<HostSystemEntity>
query(String query, Parameter[] parameters)
Query ofHostSystemEntity
from the persistent store.List<HostSystemEntity>
query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofHostSystemEntity
from the persistent store.void
remove(HostSystemEntity entity)
Removes an instance ofHostSystemEntity
from the persistent store.void
remove(Long id)
Removes an instance ofHostSystemEntity
from the persistent store.void
remove(Collection<? extends HostSystemEntity> entities)
Removes a collection ofHostSystemEntity
from the persistent store.void
update(HostSystemEntity entity)
Updates an instance ofHostSystemEntity
at the persistent store.void
update(Collection<? extends HostSystemEntity> entities)
Updates a collection ofHostSystemEntity
in the persistent store.
-
-
-
Method Detail
-
newHostSystemEntity
HostSystemEntity newHostSystemEntity()
Creates an instance ofHostSystemEntity
.
-
create
void create(HostSystemEntity entity)
Adds an instance ofHostSystemEntity
to the persistent store.
-
update
void update(HostSystemEntity entity)
Updates an instance ofHostSystemEntity
at the persistent store.
-
remove
void remove(HostSystemEntity entity)
Removes an instance ofHostSystemEntity
from the persistent store.
-
load
HostSystemEntity load(Long id)
Loads an instance ofHostSystemEntity
from the persistent store.
-
loadAll
List<HostSystemEntity> loadAll()
Loads all instances ofHostSystemEntity
from the persistent store.
-
create
void create(Collection<? extends HostSystemEntity> entities)
Creates a collection ofHostSystemEntity
and adds it to the persistent store.
-
update
void update(Collection<? extends HostSystemEntity> entities)
Updates a collection ofHostSystemEntity
in the persistent store.
-
remove
void remove(Collection<? extends HostSystemEntity> entities)
Removes a collection ofHostSystemEntity
from the persistent store.
-
remove
void remove(Long id)
Removes an instance ofHostSystemEntity
from the persistent store.
-
query
List<HostSystemEntity> query(String query, Parameter[] parameters)
Query ofHostSystemEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<HostSystemEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofHostSystemEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-