Skip to content

Instantly share code, notes, and snippets.

View bernardolopes8's full-sized avatar

Bernardo Lopes bernardolopes8

View GitHub Profile
@bernardolopes8
bernardolopes8 / BookPersister.java
Last active November 15, 2024 13:04
Jersey Pagination, Sorting, and Filtering Example
package my.application.dao;
import java.util.List;
import my.application.entity.Book;
import my.application.restutil.RequestOptions;
public interface BookPersister {
List<Book> getBooks(RequestOptions requestOptions);
}