Skip to content

Instantly share code, notes, and snippets.

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