MonitorFormBean.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.web.ctrlstat.servlet.monitor;

  21. import org.openspcoop2.pdd.monitor.BustaServizio;
  22. import org.openspcoop2.pdd.monitor.BustaSoggetto;

  23. /**
  24.  * Dati di input del form Monitor
  25.  *
  26.  *
  27.  * @author Andrea Poli (apoli@link.it)
  28.  * @author Stefano Corallo (corallo@link.it)
  29.  * @author Sandra Giangrandi (sandra@link.it)
  30.  * @author $Author$
  31.  * @version $Rev$, $Date$
  32.  *
  33.  */
  34. public class MonitorFormBean {

  35.     private String pdd;
  36.     private String sorgenteDati;
  37.    
  38.     private String orderByConsegnaAsincrona;
  39.    
  40.     private String idMessaggio;
  41.     private String messagePattern;
  42.     private BustaSoggetto mittente;
  43.     private BustaSoggetto destinatario;
  44.     private BustaServizio servizio;
  45.     private String azione;
  46.     private long soglia;
  47.     private String profiloCollaborazione;
  48.     private String method;
  49.     private boolean riscontro;
  50.     private String stato;
  51.     private String tipo;
  52.     private String correlazioneApplicativa;

  53.     public String getPdd() {
  54.         return this.pdd;
  55.     }

  56.     public void setPdd(String pdd) {
  57.         this.pdd = pdd;
  58.     }
  59.    
  60.     public String getSorgenteDati() {
  61.         return this.sorgenteDati;
  62.     }

  63.     public void setSorgenteDati(String sorgenteDati) {
  64.         this.sorgenteDati = sorgenteDati;
  65.     }
  66.    
  67.     public String getOrderByConsegnaAsincrona() {
  68.         return this.orderByConsegnaAsincrona;
  69.     }

  70.     public void setOrderByConsegnaAsincrona(String orderByConsegnaAsincrona) {
  71.         this.orderByConsegnaAsincrona = orderByConsegnaAsincrona;
  72.     }
  73.    
  74.     public String getTipo() {
  75.         return this.tipo;
  76.     }

  77.     public void setTipo(String tipo) {
  78.         this.tipo = tipo;
  79.     }

  80.     public boolean isRiscontro() {
  81.         return this.riscontro;
  82.     }

  83.     public void setRiscontro(boolean riscontro) {
  84.         this.riscontro = riscontro;
  85.     }

  86.     public String getStato() {
  87.         return this.stato;
  88.     }

  89.     public void setStato(String stato) {
  90.         this.stato = stato;
  91.     }

  92.     public String getMethod() {
  93.         return this.method;
  94.     }

  95.     public void setMethod(String method) {
  96.         this.method = method;
  97.     }

  98.     public String getProfiloCollaborazione() {
  99.         return this.profiloCollaborazione;
  100.     }

  101.     public void setProfiloCollaborazione(String profiloCollaborazione) {
  102.         this.profiloCollaborazione = profiloCollaborazione;
  103.     }

  104.     public String getIdMessaggio() {
  105.         return this.idMessaggio;
  106.     }

  107.     public void setIdMessaggio(String idMessaggio) {
  108.         this.idMessaggio = idMessaggio;
  109.     }

  110.     public String getMessagePattern() {
  111.         return this.messagePattern;
  112.     }

  113.     public void setMessagePattern(String messagePattern) {
  114.         this.messagePattern = messagePattern;
  115.     }

  116.     public BustaSoggetto getMittente() {
  117.         return this.mittente;
  118.     }

  119.     public void setMittente(BustaSoggetto mittente) {
  120.         this.mittente = mittente;
  121.     }

  122.     public BustaSoggetto getDestinatario() {
  123.         return this.destinatario;
  124.     }

  125.     public void setDestinatario(BustaSoggetto destinatario) {
  126.         this.destinatario = destinatario;
  127.     }

  128.     public BustaServizio getServizio() {
  129.         return this.servizio;
  130.     }

  131.     public void setServizio(BustaServizio servizio) {
  132.         this.servizio = servizio;
  133.     }

  134.     public String getAzione() {
  135.         return this.azione;
  136.     }

  137.     public void setAzione(String azione) {
  138.         this.azione = azione;
  139.     }

  140.     public long getSoglia() {
  141.         return this.soglia;
  142.     }

  143.     public void setSoglia(long soglia) {
  144.         this.soglia = soglia;
  145.     }

  146.     public String getCorrelazioneApplicativa() {
  147.         return this.correlazioneApplicativa;
  148.     }

  149.     public void setCorrelazioneApplicativa(String correlazioneApplicativa) {
  150.         this.correlazioneApplicativa = correlazioneApplicativa;
  151.     }

  152. }