SDICostantiServizioTrasmissioneFatture.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.protocol.sdi.constants;

  21. import it.gov.fatturapa.sdi.ws.trasmissione.v1_0.types.utils.ProjectInfo;

  22. /**
  23.  * SDICostantiServizioTrasmissioneFatture
  24.  *
  25.  * @author Andrea Poli (apoli@link.it)
  26.  * @author $Author$
  27.  * @version $Rev$, $Date$
  28.  */
  29. public class SDICostantiServizioTrasmissioneFatture {

  30.     public static final String TRASMISSIONE_SERVIZIO_TRASMISSIONE_FATTURE = "TrasmissioneFatture";
  31.     public static final String TRASMISSIONE_SERVIZIO_TRASMISSIONE_FATTURE_AZIONE_RICEVUTA_CONSEGNA = "RicevutaConsegna";
  32.     public static final String TRASMISSIONE_SERVIZIO_TRASMISSIONE_FATTURE_AZIONE_NOTIFICA_MANCATA_CONSEGNA = "NotificaMancataConsegna";
  33.     public static final String TRASMISSIONE_SERVIZIO_TRASMISSIONE_FATTURE_AZIONE_NOTIFICA_SCARTO = "NotificaScarto";
  34.     public static final String TRASMISSIONE_SERVIZIO_TRASMISSIONE_FATTURE_AZIONE_NOTIFICA_ESITO = "NotificaEsito";
  35.     public static final String TRASMISSIONE_SERVIZIO_TRASMISSIONE_FATTURE_AZIONE_NOTIFICA_DECORRENZA_TERMINI = "NotificaDecorrenzaTermini";
  36.     public static final String TRASMISSIONE_SERVIZIO_TRASMISSIONE_FATTURE_AZIONE_ATTESTAZIONE_TRASMISSIONE_FATTURA = "AttestazioneTrasmissioneFattura";
  37.    
  38.     public static final String TRASMISSIONE_SERVIZIO_TRASMISSIONE_FATTURE_NAMESPACE = ProjectInfo.getInstance().getProjectNamespace();
  39.    
  40.    
  41.     // AZIONE: RicevutaConsegna
  42.    
  43.     public static final String RICEVUTA_CONSEGNA_RICHIESTA_ROOT_ELEMENT = "ricevutaConsegna";

  44.     // AZIONE: NotificaMancataConsegna
  45.    
  46.     public static final String NOTIFICA_MANCATA_CONSEGNA_RICHIESTA_ROOT_ELEMENT = "notificaMancataConsegna";

  47.     // AZIONE: NotificaScarto
  48.    
  49.     public static final String NOTIFICA_SCARTO_RICHIESTA_ROOT_ELEMENT = "notificaScarto";
  50.    
  51.     // AZIONE: NotificaEsito
  52.    
  53.     public static final String NOTIFICA_ESITO_RICHIESTA_ROOT_ELEMENT = "notificaEsito";
  54.    
  55.     // AZIONE: NotificaDecorrenzaTermini
  56.    
  57.     public static final String NOTIFICA_DECORRENZA_TERMINI_RICHIESTA_ROOT_ELEMENT = "notificaDecorrenzaTermini";
  58.    
  59.     // AZIONE: AttestazioneTrasmissioneFattura
  60.    
  61.     public static final String ATTESTAZIONE_TRASMISSIONE_FATTURA_RICHIESTA_ROOT_ELEMENT = "attestazioneTrasmissioneFattura";
  62.    
  63.    
  64.     // COMMON fileSdI_Type
  65.    
  66.     public static final String FILE_SDI_TYPE_RICHIESTA_ELEMENT_IDENTIFICATIVO_SDI = "IdentificativoSdI";
  67.     public static final String FILE_SDI_TYPE_CONSEGNA_RICHIESTA_ELEMENT_NOME_FILE = "NomeFile";
  68.     public static final String FILE_SDI_TYPE_CONSEGNA_RICHIESTA_ELEMENT_FILE = "File";

  69.    
  70.    
  71. }