Created
          September 15, 2011 04:47 
        
      - 
      
- 
        Save krams915/1218565 to your computer and use it in GitHub Desktop. 
    IEventRepository.java
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package org.krams.tutorial.repository.jpa; | |
| import org.krams.tutorial.domain.Event; | |
| import org.springframework.data.jpa.repository.JpaRepository; | |
| /** | |
| * A repository for {@link Event} | |
| * | |
| * @author krams at {@link http://[email protected]} | |
| */ | |
| public interface IEventRepository extends JpaRepository<Event, Long> { | |
| } | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment