Skip to content

Instantly share code, notes, and snippets.

@theflofly
Created January 14, 2016 06:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theflofly/f52513339c5c5f4b6c89 to your computer and use it in GitHub Desktop.
Save theflofly/f52513339c5c5f4b6c89 to your computer and use it in GitHub Desktop.
package com.tcb.issue1.repository;
import com.tcb.issue1.model.Offer;
import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;
/**
* This class is a repository for the offer object model. It abstract the data access by providing default methods to
* access data.
*
* Created by Florian.Courtial on 11/01/16.
*/
public interface OfferRepository extends ElasticsearchRepository<Offer, String> {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment