Example usage for org.springframework.data.solr.repository SolrCrudRepository interface-usage

List of usage examples for org.springframework.data.solr.repository SolrCrudRepository interface-usage

Introduction

In this page you can find the example usage for org.springframework.data.solr.repository SolrCrudRepository interface-usage.

Usage

From source file com.att.archive.restful.repositories.solr.DocumentRepositoryCustom.java

/**
 *
 * @author ebrimatunkara
 * @param <T>
 * @param <ID>
 */

From source file midas.repository.solr.CustomerSolrRepository.java

/**
 * @author caio.amaral
 *
 */
public interface CustomerSolrRepository extends SolrCrudRepository<CustomerSolr, Integer> {

From source file com.ushahidi.swiftriver.core.solr.repository.DropDocumentRepository.java

public interface DropDocumentRepository extends SolrCrudRepository<DropDocument, String>, DropSearchRepository {

    /**
     * Returns all {@link DropDocument} entities with the IDs
     * specified in <code>ids</code>
     * 

From source file org.bisen.blog.repository.springdatasolr.SolrBlogRepository.java

/**
 *
 * @author asikprad
 */
public interface SolrBlogRepository extends SolrCrudRepository<SolrBlog, Integer> {

From source file com.pkrete.locationservice.endpoint.solr.repository.OwnerDocumentRepository.java

/**
 * This interfaces defines methods for searching Owners from an external search
 * index.
 *
 * Search method implementations are dynamically generated runtime based on the
 * naming conventions and annotations. No implementation of this interface is

From source file com.pkrete.locationservice.admin.solr.repository.OwnerDocumentRepository.java

/**
 * This interfaces defines methods for adding, updating, deleting and searching
 * Owners from an external search index. Methods for adding, updating and
 * deleting data from index are inherited from the super class.
 *
 * Search method implementations are dynamically generated runtime based on the

From source file com.pkrete.locationservice.admin.solr.repository.LanguageDocumentRepository.java

/**
 * This interfaces defines methods for adding, updating, deleting and searching
 * Languages from an external search index. Methods for adding, updating and
 * deleting data from index are inherited from the super class.
 *
 * Search method implementations are dynamically generated runtime based on the

From source file com.pkrete.locationservice.admin.solr.repository.LocationDocumentRepository.java

/**
 * This interfaces defines methods for adding, updating, deleting and searching
 * Locations from an external search index. Methods for adding, updating and
 * deleting data from index are inherited from the super class.
 *
 * Search method implementations are dynamically generated runtime based on the

From source file com.eurodisney.streamit.solr.product.ProductRepository.java

/**
 * @author Christoph Strobl
 */
interface ProductRepository extends SolrCrudRepository<Product, String> {

    @Highlight(prefix = "<b>", postfix = "</b>")

From source file com.nixmash.springdata.solr.repository.custom.CustomProductRepository.java

/**
 * 
 * NixMash Spring Notes: ---------------------------------------------------
 * 
 * Based on Christoph Strobl's Spring Solr Repository Example for Spring Boot
 *