Example usage for org.springframework.data.mongodb.repository.support SimpleMongoRepository subclass-usage

List of usage examples for org.springframework.data.mongodb.repository.support SimpleMongoRepository subclass-usage

Introduction

In this page you can find the example usage for org.springframework.data.mongodb.repository.support SimpleMongoRepository subclass-usage.

Usage

From source file org.jutge.joc.porra.repository.base.ExtendedMongoRepositoryImpl.java

/**
 * Extended mongo repo that supports insert operations 
 * @author Llop
 */
public class ExtendedMongoRepositoryImpl<T, ID extends Serializable> extends SimpleMongoRepository<T, Serializable>
        implements ExtendedMongoRepository<T, Serializable> {

From source file it.f2informatica.pagination.repository.mongodb.SimpleMongoPaginationRepository.java

public class SimpleMongoPaginationRepository<T, ID extends Serializable> extends SimpleMongoRepository<T, ID>
        implements MongoDBQueryExecutor<T> {

    public SimpleMongoPaginationRepository(MongoEntityInformation<T, ID> metadata,
            MongoOperations mongoOperations) {
        super(metadata, mongoOperations);

From source file org.oncoblocks.centromere.mongodb.CentromereMongoRepository.java

/**
 * Implementation of {@link RepositoryOperations} using Spring Data's repository bean factory for
 *   instantiation.  All of the methods that are included in {@link org.springframework.data.repository.PagingAndSortingRepository}
 *   are handled by {@link SimpleMongoRepository}, while the remainder are implemented here.
 *
 * @author woemler

From source file com.epam.ta.reportportal.database.dao.ReportPortalRepositoryImpl.java

/**
 * Implementation of ReportPortal Repository. Adds possibility to search
 * documents/tables using custom queries
 *
 * @param <T>  - Entity Type
 * @param <ID> - Entity ID Type

From source file org.springframework.data.mongodb.repository.support.QueryDslMongoRepository.java

/**
 * Special QueryDsl based repository implementation that allows execution {@link Predicate}s in various forms.
 * 
 * @author Oliver Gierke
 */
public class QueryDslMongoRepository<T, ID extends Serializable> extends SimpleMongoRepository<T, ID>