File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
spring-data-mongodb/src/main/java/org/springframework/data/mongodb/repository Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -40,18 +40,21 @@ public interface MongoRepository<T, ID extends Serializable>
4040 * (non-Javadoc)
4141 * @see org.springframework.data.repository.CrudRepository#save(java.lang.Iterable)
4242 */
43+ @ Override
4344<S extends T > List <S > save (Iterable <S > entites );
4445
4546/*
4647 * (non-Javadoc)
4748 * @see org.springframework.data.repository.CrudRepository#findAll()
4849 */
50+ @ Override
4951List <T > findAll ();
5052
5153/*
5254 * (non-Javadoc)
5355 * @see org.springframework.data.repository.PagingAndSortingRepository#findAll(org.springframework.data.domain.Sort)
5456 */
57+ @ Override
5558List <T > findAll (Sort sort );
5659
5760/**
@@ -76,14 +79,17 @@ public interface MongoRepository<T, ID extends Serializable>
7679 */
7780<S extends T > List <S > insert (Iterable <S > entities );
7881
79- /* (non-Javadoc)
82+ /*
83+ * (non-Javadoc)
8084 * @see org.springframework.data.repository.query.QueryByExampleExecutor#findAll(org.springframework.data.domain.Example)
8185 */
86+ @ Override
8287<S extends T > List <S > findAll (Example <S > example );
8388
84- /* (non-Javadoc)
89+ /*
90+ * (non-Javadoc)
8591 * @see org.springframework.data.repository.query.QueryByExampleExecutor#findAll(org.springframework.data.domain.Example, org.springframework.data.domain.Sort)
8692 */
93+ @ Override
8794<S extends T > List <S > findAll (Example <S > example , Sort sort );
88-
8995}
You can’t perform that action at this time.
0 commit comments