Skip to content

Instantly share code, notes, and snippets.

@krams915
Created September 15, 2011 04:47
Show Gist options
  • Save krams915/1218565 to your computer and use it in GitHub Desktop.
Save krams915/1218565 to your computer and use it in GitHub Desktop.
IEventRepository.java
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