001/* 002 * Copyright 2020 Global Biodiversity Information Facility (GBIF) 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package org.gbif.api.util.iterables; 017 018import org.gbif.api.model.common.paging.PagingRequest; 019import org.gbif.api.model.common.paging.PagingResponse; 020import org.gbif.api.model.registry.Dataset; 021import org.gbif.api.service.registry.InstallationService; 022import org.gbif.api.vocabulary.DatasetType; 023 024import java.util.UUID; 025 026import javax.annotation.Nullable; 027 028/** 029 * Iterates over all datasets hosted by a given installation. 030 */ 031public class InstallationPager extends DatasetBasePager { 032 033 private final InstallationService service; 034 private final UUID installationKey; 035 036 public InstallationPager(InstallationService service, UUID installationKey, 037 @Nullable DatasetType type, int pageSize) { 038 super(type, pageSize); 039 this.service = service; 040 this.installationKey = installationKey; 041 } 042 043 @Override 044 public PagingResponse<Dataset> nextPage(PagingRequest page) { 045 return service.getHostedDatasets(installationKey, page); 046 } 047 048}