GruppoSintetico.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.GruppoAccordo;


  23. /**
  24.  * GruppoSintetico
  25.  *
  26.  * @version $Rev$, $Date$
  27.  *
  28.  * @author Poli Andrea (poli@link.it)
  29.  * @author $Author$
  30.  * */

  31. public class GruppoSintetico extends org.openspcoop2.utils.beans.BaseBean implements Serializable , Cloneable {
  32.     /**
  33.      *
  34.      */
  35.     private static final long serialVersionUID = 1L;

  36.     public GruppoSintetico() {
  37.     }
  38.     public GruppoSintetico(GruppoAccordo param) {
  39.         this.id = param.getId();
  40.         this.nome = param.getNome();
  41.     }

  42.     private Long id;

  43.     private java.lang.String nome;

  44.     public Long getId() {
  45.         return this.id;
  46.     }

  47.     public void setId(Long id) {
  48.         this.id = id;
  49.     }

  50.     public java.lang.String getNome() {
  51.         return this.nome;
  52.     }

  53.     public void setNome(java.lang.String nome) {
  54.         this.nome = nome;
  55.     }

  56. }