BAEL-21597: Migrate spring-rest-angular to com.baeldung

This commit is contained in:
Krzysztof Woyke
2020-01-31 13:11:57 +01:00
parent afe5cb4144
commit 72e2e06821
13 changed files with 29 additions and 29 deletions

View File

@@ -0,0 +1,9 @@
package com.baeldung.web.service;
import org.springframework.data.domain.Page;
public interface IOperations<T> {
public Page<T> findPaginated(final int page, final int size);
}