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 February 8, 2024 14:46
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);
}