Example usage for org.springframework.data.mongodb.repository MongoRepository interface-usage

List of usage examples for org.springframework.data.mongodb.repository MongoRepository interface-usage

Introduction

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

Usage

From source file com.trenako.repositories.AccountsRepository.java

/**
 * The interface for the user {@code Account}s repository.
 *
 * @author Carlo Micieli
 */
public interface AccountsRepository extends MongoRepository<Account, ObjectId>, AccountsCustomRepository {

From source file org.tylproject.data.mongo.party.repository.PartyRelationshipQualifierRepository.java

/**
 * Created by mp on 05/01/15.
 */
public interface PartyRelationshipQualifierRepository
        extends MongoRepository<PartyRelationshipQualifier, ObjectId> {
}

From source file com.autsia.socialboot.businesslogic.twitter.repositories.TweetResultRepository.java

/**
 * Sample repository for storing the results of tweets processing
 */
public interface TweetResultRepository extends MongoRepository<TweetWrapper, String> {

}

From source file uk.ac.ebi.eva.lib.datastore.FeatureRepository.java

/**
 * This interface documents how features can be queried.
 *
 * This interface is used by Spring to create the query methods for features.
 * Spring creates the implementation automatically by looking at the method name.
 *

From source file com.trenako.repositories.BrandsRepository.java

/**
 * The interface for the model railway {@code Brand}s repository.
 *
 * @author Carlo Micieli
 */
public interface BrandsRepository extends MongoRepository<Brand, ObjectId>, BrandsCustomRepository {

From source file com.trenako.repositories.RailwaysRepository.java

/**
 * The interface for the {@code Railway}s repository.
 *
 * @author Carlo Micieli
 */
public interface RailwaysRepository extends MongoRepository<Railway, ObjectId> {

From source file com.hd123.oauth2.repository.ProductRepository.java

/**
 * ???
 *
 * @author liyue
 */
public interface ProductRepository extends MongoRepository<Product, ObjectId> {

From source file com.hd123.oauth2.repository.UserRepository.java

/**
 * ??
 *
 * @author liyue
 */
public interface UserRepository extends MongoRepository<User, ObjectId> {

From source file de.steilerdev.myVerein.server.model.SettingsRepository.java

public interface SettingsRepository extends MongoRepository<Settings, String> {
    public List<Settings> findAll();
}

From source file com.videohub.repository.CategoryRepository.java

/**
 * Created by: Sebastian Florek.
 * Created on: 2015-06-04.
 */
@Repository
public interface CategoryRepository extends MongoRepository<Category, Long> {