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


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

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

  37.     public OperationSintetica() {
  38.     }
  39.     public OperationSintetica(Operation param) {
  40.         this.id = param.getId();
  41.         this.profAzione = param.getProfAzione();
  42.         this.idPortType = param.getIdPortType();
  43.         this.nome = param.getNome();
  44.         this.profiloCollaborazione = param.getProfiloCollaborazione();
  45.         this.correlataServizio = param.getCorrelataServizio();
  46.         this.correlata = param.getCorrelata();
  47.     }

  48.     private Long id;

  49.     private java.lang.String profAzione;

  50.     private java.lang.Long idPortType;

  51.     private java.lang.String nome;

  52.     private ProfiloCollaborazione profiloCollaborazione;

  53.     private java.lang.String correlataServizio;

  54.     private java.lang.String correlata;

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

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

  61.     public java.lang.String getProfAzione() {
  62.         return this.profAzione;
  63.     }

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

  67.     public java.lang.Long getIdPortType() {
  68.         return this.idPortType;
  69.     }

  70.     public void setIdPortType(java.lang.Long idPortType) {
  71.         this.idPortType = idPortType;
  72.     }

  73.     public java.lang.String getNome() {
  74.         return this.nome;
  75.     }

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

  79.     public ProfiloCollaborazione getProfiloCollaborazione() {
  80.         return this.profiloCollaborazione;
  81.     }

  82.     public void setProfiloCollaborazione(ProfiloCollaborazione profiloCollaborazione) {
  83.         this.profiloCollaborazione = profiloCollaborazione;
  84.     }

  85.     public java.lang.String getCorrelataServizio() {
  86.         return this.correlataServizio;
  87.     }

  88.     public void setCorrelataServizio(java.lang.String correlataServizio) {
  89.         this.correlataServizio = correlataServizio;
  90.     }

  91.     public java.lang.String getCorrelata() {
  92.         return this.correlata;
  93.     }

  94.     public void setCorrelata(java.lang.String correlata) {
  95.         this.correlata = correlata;
  96.     }

  97. }