Allegati.java

  1. /*
  2.  * GovWay - A customizable API Gateway
  3.  * https://govway.org
  4.  *
  5.  * Copyright (c) 2005-2025 Link.it srl (https://link.it).
  6.  *
  7.  * This program is free software: you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License version 3, as published by
  9.  * the Free Software Foundation.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  18.  *
  19.  */

  20. package org.openspcoop2.protocol.registry;

  21. import java.util.ArrayList;
  22. import java.util.List;

  23. import org.openspcoop2.core.registry.Documento;

  24. /**
  25.  * Allegati
  26.  *
  27.  * @author Poli Andrea (apoli@link.it)
  28.  * @author $Author$
  29.  * @version $Rev$, $Date$
  30.  */
  31. public class Allegati {

  32.     private List<Documento> allegatiASParteComune = new ArrayList<Documento>();
  33.     private List<Documento> specificheSemiformaliASParteComune = new ArrayList<Documento>();
  34.    
  35.     private List<Documento> allegatiASParteSpecifica = new ArrayList<Documento>();
  36.     private List<Documento> specificheSemiformaliASParteSpecifica = new ArrayList<Documento>();
  37.     private List<Documento> specificheSicurezzaASParteSpecifica = new ArrayList<Documento>();
  38.     private List<Documento> specificheLivelloServizioASParteSpecifica = new ArrayList<Documento>();
  39.    
  40.    
  41.     public List<Documento> getAllegatiASParteComune() {
  42.         return this.allegatiASParteComune;
  43.     }
  44.     public void setAllegatiASParteComune(List<Documento> allegatiASParteComune) {
  45.         this.allegatiASParteComune = allegatiASParteComune;
  46.     }
  47.     public List<Documento> getSpecificheSemiformaliASParteComune() {
  48.         return this.specificheSemiformaliASParteComune;
  49.     }
  50.     public void setSpecificheSemiformaliASParteComune(
  51.             List<Documento> specificheSemiformaliASParteComune) {
  52.         this.specificheSemiformaliASParteComune = specificheSemiformaliASParteComune;
  53.     }
  54.     public List<Documento> getAllegatiASParteSpecifica() {
  55.         return this.allegatiASParteSpecifica;
  56.     }
  57.     public void setAllegatiASParteSpecifica(List<Documento> allegatiASParteSpecifica) {
  58.         this.allegatiASParteSpecifica = allegatiASParteSpecifica;
  59.     }
  60.     public List<Documento> getSpecificheSemiformaliASParteSpecifica() {
  61.         return this.specificheSemiformaliASParteSpecifica;
  62.     }
  63.     public void setSpecificheSemiformaliASParteSpecifica(
  64.             List<Documento> specificheSemiformaliASParteSpecifica) {
  65.         this.specificheSemiformaliASParteSpecifica = specificheSemiformaliASParteSpecifica;
  66.     }
  67.     public List<Documento> getSpecificheSicurezzaASParteSpecifica() {
  68.         return this.specificheSicurezzaASParteSpecifica;
  69.     }
  70.     public void setSpecificheSicurezzaASParteSpecifica(
  71.             List<Documento> specificheSicurezzaASParteSpecifica) {
  72.         this.specificheSicurezzaASParteSpecifica = specificheSicurezzaASParteSpecifica;
  73.     }
  74.     public List<Documento> getSpecificheLivelloServizioASParteSpecifica() {
  75.         return this.specificheLivelloServizioASParteSpecifica;
  76.     }
  77.     public void setSpecificheLivelloServizioASParteSpecifica(
  78.             List<Documento> specificheLivelloServizioASParteSpecifica) {
  79.         this.specificheLivelloServizioASParteSpecifica = specificheLivelloServizioASParteSpecifica;
  80.     }
  81. }