Created
September 15, 2011 14:51
-
-
Save krams915/1219453 to your computer and use it in GitHub Desktop.
IErrorLogRepository.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.mongo; | |
| import org.krams.tutorial.domain.ErrorLog; | |
| import org.springframework.data.mongodb.repository.MongoRepository; | |
| /** | |
| * @author krams at {@link http://[email protected]} | |
| */ | |
| public interface IErrorLogRepository extends MongoRepository<ErrorLog, String> { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment