MappingFruizionePortaDelegata.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.core.mapping;

  21. import java.io.Serializable;

  22. import org.openspcoop2.core.id.IDPortaDelegata;
  23. import org.openspcoop2.core.id.IDServizio;
  24. import org.openspcoop2.core.id.IDSoggetto;

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

  34.     /**
  35.      *
  36.      */
  37.     private static final long serialVersionUID = 1L;

  38.     private long tableId;
  39.    
  40.     private IDServizio idServizio;
  41.     private IDSoggetto idFruitore;
  42.     private IDPortaDelegata idPortaDelegata;
  43.     private String nome;
  44.     private String descrizione;
  45.     private boolean isDefault;
  46.    
  47.     public long getTableId() {
  48.         return this.tableId;
  49.     }
  50.     public void setTableId(long tableId) {
  51.         this.tableId = tableId;
  52.     }

  53.     public IDServizio getIdServizio() {
  54.         return this.idServizio;
  55.     }
  56.     public void setIdServizio(IDServizio idServizio) {
  57.         this.idServizio = idServizio;
  58.     }
  59.     public IDSoggetto getIdFruitore() {
  60.         return this.idFruitore;
  61.     }
  62.     public void setIdFruitore(IDSoggetto idFruitore) {
  63.         this.idFruitore = idFruitore;
  64.     }
  65.     public IDPortaDelegata getIdPortaDelegata() {
  66.         return this.idPortaDelegata;
  67.     }
  68.     public void setIdPortaDelegata(IDPortaDelegata idPortaDelegata) {
  69.         this.idPortaDelegata = idPortaDelegata;
  70.     }
  71.     public String getNome() {
  72.         return this.nome;
  73.     }
  74.     public void setNome(String nome) {
  75.         this.nome = nome;
  76.     }
  77.     public String getDescrizione() {
  78.         return this.descrizione;
  79.     }
  80.     public void setDescrizione(String descrizione) {
  81.         this.descrizione = descrizione;
  82.     }
  83.     public boolean isDefault() {
  84.         return this.isDefault;
  85.     }
  86.     public void setDefault(boolean isDefault) {
  87.         this.isDefault = isDefault;
  88.     }
  89. }