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