Class QuickSearchItemDaoImpl
java.lang.Object
org.springframework.dao.support.DaoSupport
org.springframework.orm.hibernate5.support.HibernateDaoSupport
com.atlassian.bamboo.persistence3.BambooHibernateObjectDao<QuickSearchItem>
com.atlassian.bamboo.index.quicksearch.QuickSearchItemDaoImpl
- All Implemented Interfaces:
QuickSearchItemDao,BambooObjectDao<QuickSearchItem>,org.springframework.beans.factory.InitializingBean
public class QuickSearchItemDaoImpl
extends BambooHibernateObjectDao<QuickSearchItem>
implements QuickSearchItemDao
-
Field Summary
Fields inherited from class org.springframework.dao.support.DaoSupport
logger -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidClears entire index table.voiddeIndexItem(QuickSearchItem.Type type, long id) Remove all search terms for a specified entity.@NotNull List<QuickSearchItem> findMatchingItems(@NotNull Set<String> searchTerms, int offset, int pageSize) @NotNull List<QuickSearchItem> findMatchingItems(@NotNull Set<String> searchTerms, QuickSearchItem.Type type, int offset, int pageSize) voidindexItems(@NotNull List<QuickSearchItem> items) Insert provided search terms.booleanreIndexItem(QuickSearchItem.Type type, long id, long aclId, @NotNull Iterable<String> searchTerms) Update search terms for an entity.booleanreIndexItem(QuickSearchItem.Type type, long id, @NotNull Iterable<String> searchTerms) Update search terms for an entity.Methods inherited from class com.atlassian.bamboo.persistence3.BambooHibernateObjectDao
convertSearchTermToLikeExpression, countAll, countWithRestriction, delete, deleteAll, executeCountQuery, findAll, findAll, findById, merge, save, saveAllMethods inherited from class org.springframework.orm.hibernate5.support.HibernateDaoSupport
checkDaoConfig, createHibernateTemplate, currentSession, getHibernateTemplate, getSessionFactory, setHibernateTemplate, setSessionFactoryMethods inherited from class org.springframework.dao.support.DaoSupport
afterPropertiesSet, initDao
-
Constructor Details
-
QuickSearchItemDaoImpl
public QuickSearchItemDaoImpl()
-
-
Method Details
-
reIndexItem
public boolean reIndexItem(@NotNull QuickSearchItem.Type type, long id, @NotNull @NotNull Iterable<String> searchTerms) Description copied from interface:QuickSearchItemDaoUpdate search terms for an entity. The method removes all pre-existing search items that are not listed in the 'searchTerms' argument. The method does not perform any DB operations if the state of the DB already matches the arguments.- Specified by:
reIndexItemin interfaceQuickSearchItemDao- Returns:
- true iff any changes has been performed.
-
reIndexItem
public boolean reIndexItem(@NotNull QuickSearchItem.Type type, long id, long aclId, @NotNull @NotNull Iterable<String> searchTerms) Description copied from interface:QuickSearchItemDaoUpdate search terms for an entity. The method removes all pre-existing search items that are not listed in the 'searchTerms' argument. The method does not perform any DB operations if the state of the DB already matches the arguments.- Specified by:
reIndexItemin interfaceQuickSearchItemDao- Returns:
- true iff any changes has been performed.
-
deIndexItem
Description copied from interface:QuickSearchItemDaoRemove all search terms for a specified entity.- Specified by:
deIndexItemin interfaceQuickSearchItemDao
-
findMatchingItems
@NotNull public @NotNull List<QuickSearchItem> findMatchingItems(@NotNull @NotNull Set<String> searchTerms, int offset, int pageSize) - Specified by:
findMatchingItemsin interfaceQuickSearchItemDao
-
findMatchingItems
@NotNull public @NotNull List<QuickSearchItem> findMatchingItems(@NotNull @NotNull Set<String> searchTerms, @Nullable QuickSearchItem.Type type, int offset, int pageSize) - Specified by:
findMatchingItemsin interfaceQuickSearchItemDao
-
deIndexAll
public void deIndexAll()Description copied from interface:QuickSearchItemDaoClears entire index table.- Specified by:
deIndexAllin interfaceQuickSearchItemDao
-
indexItems
Description copied from interface:QuickSearchItemDaoInsert provided search terms. This method does not check if any matching items already exist.- Specified by:
indexItemsin interfaceQuickSearchItemDao
-