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