// The Abiquo API does not provide the media types in the
// pagination links, but it will be the same type than the
// current page, so just set it.
next.setType(UsersDto.BASE_MEDIA_TYPE);
UsersDto nextPage = parser.apply(api.get(next));
return new UserPaginatedCollection(api, nextPage, parser);
}
};
}