Example usage for org.springframework.data.repository Repository interface-usage

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

Introduction

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

Usage

From source file com.ar.dev.tierra.api.repository.MetodoPagoFacturaRepository.java

/**
 *
 * @author PauloGaldo
 */
public interface MetodoPagoFacturaRepository extends Repository<MetodoPagoFactura, Serializable> {

From source file com.ar.dev.tierra.api.repository.ProductoRepository.java

/**
 *
 * @author PauloGaldo
 */
public interface ProductoRepository extends Repository<Producto, String> {

From source file com.github.fauu.natrank.repository.CountryCodeRepository.java

public interface CountryCodeRepository extends Repository<CountryCode, Integer> {

    List<CountryCode> findByCountryName(String countryName) throws DataAccessException;

}

From source file com.github.fauu.natrank.repository.TeamExtremeTypeRepository.java

public interface TeamExtremeTypeRepository extends Repository<TeamExtremeType, Integer> {

    List<TeamExtremeType> findAll() throws DataAccessException;

}

From source file oauth2.entities.ClientRepository.java

public interface ClientRepository extends Repository<Client, String> {

    Client findByClientId(String clientId);
}

From source file com.github.fauu.natrank.repository.NotableMatchCategoryRepository.java

public interface NotableMatchCategoryRepository extends Repository<NotableMatchCategory, Integer> {

    List<NotableMatchCategory> findAll() throws DataAccessException;

}

From source file oauth2.entities.RefreshTokenRepository.java

public interface RefreshTokenRepository extends Repository<RefreshToken, String> {

    RefreshToken findByTokenId(String tokenId);

    RefreshToken save(RefreshToken refreshToken);

From source file com.ar.dev.tierra.api.repository.FacturaRepository.java

/**
 *
 * @author PauloGaldo
 */
public interface FacturaRepository extends Repository<Factura, String> {

From source file it.mexican.demo.springdatajpa.factory.LoyaltyRepository.java

/**
 * La classe <code>MyRepository.java</code> &egrave;
 *
 * @author Claudio Maraniello claudio.maraniello@quigroup.it
 * @version 1.00   22/gen/2015
 * @param <T>

From source file example.lib.LibRepository.java

/**
 * @author Oliver Gierke
 */
interface LibRepository extends Repository<LibRepository.MyEntity, Long> {

    static class MyEntity {