Example usage for org.springframework.data.gemfire.repository GemfireRepository interface-usage

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

Introduction

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

Usage

From source file org.spring.data.gemfire.app.dao.repo.AccountRepository.java

/**
 * The AccountsRepository class...
 *
 * @author John Blum
 * @see org.spring.data.gemfire.app.beans.Account
 * @see org.springframework.data.gemfire.repository.GemfireRepository

From source file org.spring.data.gemfire.app.dao.repo.GemstoneRepository.java

/**
 * The GemstoneRepository class is a Data Access Object (DAO) component for accessing and persisting Gemstones.
 *
 * @author John Blum
 * @see org.spring.data.gemfire.app.beans.Gemstone
 * @see org.springframework.data.gemfire.repository.GemfireRepository

From source file org.spring.data.gemfire.app.dao.repo.ProgrammerRepository.java

/**
 * The ProgrammerRepository interface is a Data Access Object (DAO) for Programmer application domain objects
 * supporting basic CRUD and Query operations.
 *
 * @author John Blum
 * @see org.spring.data.gemfire.app.beans.Programmer

From source file gemfire.practice.repository.CustomerRepository.java

/**
 * @author David Turanski
 * 
 */
public interface CustomerRepository extends GemfireRepository<Customer, Long> {

From source file example.app.repo.gemfire.CustomerRepository.java

/**
 * Spring Data {@link GemfireRepository} interface for performing basic data access, CRUD and query operations on
 * {@link Customer} objects stored and managed in Apache Geode (or Pivotal GemFire).
 *
 * @author John Blum
 * @see org.springframework.data.gemfire.repository.GemfireRepository

From source file org.spring.data.gemfire.app.dao.repo.UserRepository.java

/**
 * The UserRepository class is a Data Access Object (DAO) for accessing and persisting Users as well as performing
 * Queries.
 *
 * @author John Blum
 * @see org.spring.data.gemfire.app.beans.User

From source file org.spring.data.gemfire.app.dao.repo.CustomerRepository.java

/**
 * The CustomerRepository class...
 *
 * @author John Blum
 * @see org.spring.data.gemfire.app.beans.Customer
 * @see org.springframework.data.gemfire.repository.GemfireRepository

From source file example.app.repo.gemfire.ContactRepository.java

/**
 * Spring Data {@link GemfireRepository} for performing basic data access, CRUD and querying operations on
 * {@link Contact} objects stored and managed in Apache Geode (or Pivotal GemFire).
 *
 * @author John Blum
 * @see example.app.model.Contact