ServiziApplicativiGeneralInfo.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.web.ctrlstat.servlet.sa;

  21. import org.openspcoop2.core.id.IDSoggetto;

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

  31.     private String[] soggettiList = null;
  32.     private String[] soggettiListLabel = null;
  33.     private String tipoProtocollo = null;
  34.     private String tipoENomeSoggetto = "";
  35.     private String provider = null;
  36.     private IDSoggetto idSoggetto = null;
  37.    
  38.     public IDSoggetto getIdSoggetto() {
  39.         return this.idSoggetto;
  40.     }
  41.     public void setIdSoggetto(IDSoggetto idSoggetto) {
  42.         this.idSoggetto = idSoggetto;
  43.     }
  44.     public String[] getSoggettiList() {
  45.         return this.soggettiList;
  46.     }
  47.     public void setSoggettiList(String[] soggettiList) {
  48.         this.soggettiList = soggettiList;
  49.     }
  50.     public String[] getSoggettiListLabel() {
  51.         return this.soggettiListLabel;
  52.     }
  53.     public void setSoggettiListLabel(String[] soggettiListLabel) {
  54.         this.soggettiListLabel = soggettiListLabel;
  55.     }
  56.     public String getTipoProtocollo() {
  57.         return this.tipoProtocollo;
  58.     }
  59.     public void setTipoProtocollo(String tipoProtocollo) {
  60.         this.tipoProtocollo = tipoProtocollo;
  61.     }
  62.     public String getTipoENomeSoggetto() {
  63.         return this.tipoENomeSoggetto;
  64.     }
  65.     public void setTipoENomeSoggetto(String tipoENomeSoggetto) {
  66.         this.tipoENomeSoggetto = tipoENomeSoggetto;
  67.     }
  68.     public String getProvider() {
  69.         return this.provider;
  70.     }
  71.     public void setProvider(String provider) {
  72.         this.provider = provider;
  73.     }
  74. }