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.model.pipelines.ws; 017 018import java.util.ArrayList; 019import java.util.List; 020import java.util.UUID; 021 022/** Encapsulates the params to pass in the body for the runAll method. */ 023public class RunAllParams { 024 List<UUID> datasetsToExclude = new ArrayList<>(); 025 List<UUID> datasetsToInclude = new ArrayList<>(); 026 027 // getters and setters needed for jackson 028 029 public List<UUID> getDatasetsToExclude() { 030 return datasetsToExclude; 031 } 032 033 public void setDatasetsToExclude(List<UUID> datasetsToExclude) { 034 this.datasetsToExclude = datasetsToExclude; 035 } 036 037 public List<UUID> getDatasetsToInclude() { 038 return datasetsToInclude; 039 } 040 041 public void setDatasetsToInclude(List<UUID> datasetsToInclude) { 042 this.datasetsToInclude = datasetsToInclude; 043 } 044}