Skip to content

Instantly share code, notes, and snippets.

View sebargarcia's full-sized avatar
🐺

Sebastián Garcia sebargarcia

🐺
View GitHub Profile
@sebargarcia
sebargarcia / HelperResource.java
Created July 20, 2017 15:10 — forked from bowenwr/HelperResource.java
Jersey Pagination Example for Jersey Mailing List Request
public class HelperResource {
public static void setRequestOptions(ContainerRequestContext requestContext, RequestOptions requestOptions) {
requestContext.setProperty("requestOptions", requestOptions);
}
public static boolean isBodyRequested(ContainerRequestContext requestContext) {
// Do not return a body for head methods, but we might want to calculate paging / headers, etc.
// For now this is getting rewritten as GET by Jersey, but it might be changed later:
// https://java.net/jira/browse/JERSEY-2460