AzioneSintetica.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.Azione;
  23. import org.openspcoop2.core.registry.constants.ProfiloCollaborazione;


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

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

  37.     public AzioneSintetica() {
  38.     }
  39.     public AzioneSintetica(Azione param) {
  40.         this.id = param.getId();
  41.         this.profAzione = param.getProfAzione();
  42.         this.idAccordo = param.getIdAccordo();
  43.         this.nome = param.getNome();
  44.         this.profiloCollaborazione = param.getProfiloCollaborazione();
  45.         this.correlata = param.getCorrelata();
  46.     }

  47.     private Long id;

  48.     private java.lang.String profAzione;

  49.     private java.lang.Long idAccordo;

  50.     private java.lang.String nome;

  51.     private ProfiloCollaborazione profiloCollaborazione;

  52.     private java.lang.String correlata;

  53.     public Long getId() {
  54.         return this.id;
  55.     }

  56.     public void setId(Long id) {
  57.         this.id = id;
  58.     }

  59.     public java.lang.String getProfAzione() {
  60.         return this.profAzione;
  61.     }

  62.     public void setProfAzione(java.lang.String profAzione) {
  63.         this.profAzione = profAzione;
  64.     }

  65.     public java.lang.Long getIdAccordo() {
  66.         return this.idAccordo;
  67.     }

  68.     public void setIdAccordo(java.lang.Long idAccordo) {
  69.         this.idAccordo = idAccordo;
  70.     }

  71.     public java.lang.String getNome() {
  72.         return this.nome;
  73.     }

  74.     public void setNome(java.lang.String nome) {
  75.         this.nome = nome;
  76.     }

  77.     public ProfiloCollaborazione getProfiloCollaborazione() {
  78.         return this.profiloCollaborazione;
  79.     }

  80.     public void setProfiloCollaborazione(ProfiloCollaborazione profiloCollaborazione) {
  81.         this.profiloCollaborazione = profiloCollaborazione;
  82.     }

  83.     public java.lang.String getCorrelata() {
  84.         return this.correlata;
  85.     }

  86.     public void setCorrelata(java.lang.String correlata) {
  87.         this.correlata = correlata;
  88.     }

  89. }