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 org.tylproject.data.mongo.party.repository.PartyRoleTypeRepository.java

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

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

/**
 * The interface for the model rolling stocks repository.
 *
 * @author Carlo Micieli
 */
public interface RollingStocksRepository extends MongoRepository<RollingStock, ObjectId> {

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

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

From source file org.tylproject.data.mongo.basics.repository.NumeratorRepository.java

/**
 * Created with IntelliJ IDEA.
 * User: marco
 * Date: 16/09/14
 * Time: 10:51
*/

From source file io.curly.tagger.service.TagRepository.java

/**
 * @author Joo Evangelista
 */
interface TagRepository extends MongoRepository<Tag, String> {

    Tag findByName(String name);

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

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

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

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

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

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

From source file org.tylproject.data.mongo.basics.repository.NumeratorTypeRepository.java

/**
 * Created with IntelliJ IDEA.
 * User: marco
 * Date: 11/12/14
 * Time: 20:57
 */

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

/**
 * The interface for the options repository.
 *
 * @author Carlo Micieli
 */
public interface OptionsRepository extends MongoRepository<Option, ObjectId> {