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