AccordoServizioParteComuneServizioCompostoServizioComponenteSintetico.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.registry.beans;
  21. import java.io.Serializable;

  22. import org.openspcoop2.core.registry.AccordoServizioParteComuneServizioCompostoServizioComponente;


  23. /**
  24.  * AccordoServizioParteComuneServizioCompostoServizioComponenteSintetico
  25.  *
  26.  * @version $Rev$, $Date$
  27.  *
  28.  * @author Poli Andrea (poli@link.it)
  29.  * @author $Author$
  30.  * */
  31. public class AccordoServizioParteComuneServizioCompostoServizioComponenteSintetico extends org.openspcoop2.utils.beans.BaseBean implements Serializable , Cloneable {
  32.     /**
  33.      *
  34.      */
  35.     private static final long serialVersionUID = 1L;

  36.     public AccordoServizioParteComuneServizioCompostoServizioComponenteSintetico() {
  37.     }
  38.     public AccordoServizioParteComuneServizioCompostoServizioComponenteSintetico(AccordoServizioParteComuneServizioCompostoServizioComponente param) {
  39.         this.id = param.getId();
  40.         this.idServizioComponente = param.getIdServizioComponente();
  41.         this.tipoSoggetto = param.getTipoSoggetto();
  42.         this.nomeSoggetto = param.getNomeSoggetto();
  43.         this.tipo = param.getTipo();
  44.         this.nome = param.getNome();
  45.         this.versione = param.getVersione();
  46.         this.azione = param.getAzione();
  47.     }

  48.     private Long id;

  49.     private java.lang.Long idServizioComponente;

  50.     private java.lang.String tipoSoggetto;

  51.     private java.lang.String nomeSoggetto;

  52.     private java.lang.String tipo;

  53.     private java.lang.String nome;

  54.     private java.lang.Integer versione = java.lang.Integer.valueOf("1");

  55.     private java.lang.String azione;

  56.     public Long getId() {
  57.         return this.id;
  58.     }

  59.     public void setId(Long id) {
  60.         this.id = id;
  61.     }

  62.     public java.lang.Long getIdServizioComponente() {
  63.         return this.idServizioComponente;
  64.     }

  65.     public void setIdServizioComponente(java.lang.Long idServizioComponente) {
  66.         this.idServizioComponente = idServizioComponente;
  67.     }

  68.     public java.lang.String getTipoSoggetto() {
  69.         return this.tipoSoggetto;
  70.     }

  71.     public void setTipoSoggetto(java.lang.String tipoSoggetto) {
  72.         this.tipoSoggetto = tipoSoggetto;
  73.     }

  74.     public java.lang.String getNomeSoggetto() {
  75.         return this.nomeSoggetto;
  76.     }

  77.     public void setNomeSoggetto(java.lang.String nomeSoggetto) {
  78.         this.nomeSoggetto = nomeSoggetto;
  79.     }

  80.     public java.lang.String getTipo() {
  81.         return this.tipo;
  82.     }

  83.     public void setTipo(java.lang.String tipo) {
  84.         this.tipo = tipo;
  85.     }

  86.     public java.lang.String getNome() {
  87.         return this.nome;
  88.     }

  89.     public void setNome(java.lang.String nome) {
  90.         this.nome = nome;
  91.     }

  92.     public java.lang.Integer getVersione() {
  93.         return this.versione;
  94.     }

  95.     public void setVersione(java.lang.Integer versione) {
  96.         this.versione = versione;
  97.     }

  98.     public java.lang.String getAzione() {
  99.         return this.azione;
  100.     }

  101.     public void setAzione(java.lang.String azione) {
  102.         this.azione = azione;
  103.     }

  104. }