Package com.soffid.iam.model
Interface LuceneIndexPartEntityDao
-
- All Known Implementing Classes:
LuceneIndexPartEntityDaoBase,LuceneIndexPartEntityDaoImpl
public interface LuceneIndexPartEntityDaoDAO for Entity LuceneIndexPartEntity- See Also:
LuceneIndexPartEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(LuceneIndexPartEntity entity)Adds an instance ofLuceneIndexPartEntityto the persistent store.voidcreate(Collection<? extends LuceneIndexPartEntity> entities)Creates a collection ofLuceneIndexPartEntityand adds it to the persistent store.Collection<LuceneIndexPartEntity>findByIndex(CriteriaSearchConfiguration criteria, Long index)CriteriaSearchConfiguration finderCollection<LuceneIndexPartEntity>findByIndex(Long index)Operation findByIndexLuceneIndexPartEntityload(Long id)Loads an instance ofLuceneIndexPartEntityfrom the persistent store.List<LuceneIndexPartEntity>loadAll()Loads all instances ofLuceneIndexPartEntityfrom the persistent store.LuceneIndexPartEntitynewLuceneIndexPartEntity()Creates an instance ofLuceneIndexPartEntity.List<LuceneIndexPartEntity>query(String query, Parameter[] parameters)Query ofLuceneIndexPartEntityfrom the persistent store.List<LuceneIndexPartEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofLuceneIndexPartEntityfrom the persistent store.voidremove(LuceneIndexPartEntity entity)Removes an instance ofLuceneIndexPartEntityfrom the persistent store.voidremove(Long id)Removes an instance ofLuceneIndexPartEntityfrom the persistent store.voidremove(Collection<? extends LuceneIndexPartEntity> entities)Removes a collection ofLuceneIndexPartEntityfrom the persistent store.voidupdate(LuceneIndexPartEntity entity)Updates an instance ofLuceneIndexPartEntityat the persistent store.voidupdate(Collection<? extends LuceneIndexPartEntity> entities)Updates a collection ofLuceneIndexPartEntityin 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 ofLuceneIndexPartEntityto the persistent store.
-
update
void update(LuceneIndexPartEntity entity)
Updates an instance ofLuceneIndexPartEntityat the persistent store.
-
remove
void remove(LuceneIndexPartEntity entity)
Removes an instance ofLuceneIndexPartEntityfrom the persistent store.
-
load
LuceneIndexPartEntity load(Long id)
Loads an instance ofLuceneIndexPartEntityfrom the persistent store.
-
loadAll
List<LuceneIndexPartEntity> loadAll()
Loads all instances ofLuceneIndexPartEntityfrom the persistent store.
-
create
void create(Collection<? extends LuceneIndexPartEntity> entities)
Creates a collection ofLuceneIndexPartEntityand adds it to the persistent store.
-
update
void update(Collection<? extends LuceneIndexPartEntity> entities)
Updates a collection ofLuceneIndexPartEntityin the persistent store.
-
remove
void remove(Collection<? extends LuceneIndexPartEntity> entities)
Removes a collection ofLuceneIndexPartEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofLuceneIndexPartEntityfrom the persistent store.
-
query
List<LuceneIndexPartEntity> query(String query, Parameter[] parameters)
Query ofLuceneIndexPartEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<LuceneIndexPartEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofLuceneIndexPartEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-