SDICostantiServizioRiceviNotifica.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.ricezione.v1_0.types.utils.ProjectInfo;

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

  30.     public static final String SDI_SERVIZIO_RICEVI_NOTIFICA = "SdIRiceviNotifica";
  31.     public static final String SDI_SERVIZIO_NOTIFICA_ESITO_AZIONE_NOTIFICA_ESITO = "NotificaEsito";
  32.      
  33.     public static final String SDI_SERVIZIO_RICEVI_NOTIFICA_NAMESPACE = ProjectInfo.getInstance().getProjectNamespace();
  34.    
  35.     //public static final String SDI_SOAP_ACTION_SERVIZIO_NOTIFICA_ESITO_AZIONE_NOTIFICA_ESITO = "\"\"";
  36.     public static final String SDI_SOAP_ACTION_SERVIZIO_NOTIFICA_ESITO_AZIONE_NOTIFICA_ESITO = "\"http://www.fatturapa.it/SdIRicezioneNotifiche/NotificaEsito\"";
  37.    
  38.    
  39.     // AZIONE: NotificaEsito
  40.    
  41.     public static final String NOTIFICA_ESITO_RICHIESTA_ROOT_ELEMENT = "fileSdI";
  42.     public static final String NOTIFICA_ESITO_RICHIESTA_ELEMENT_IDENTIFICATIVO_SDI = "IdentificativoSdI";
  43.     public static final String NOTIFICA_ESITO_RICHIESTA_ELEMENT_NOME_FILE = "NomeFile";
  44.     public static final String NOTIFICA_ESITO_RICHIESTA_ELEMENT_FILE = "File";
  45.    
  46.     public static final String NOTIFICA_ESITO_RISPOSTA_ROOT_ELEMENT = "rispostaSdINotificaEsito";
  47.     public static final String NOTIFICA_ESITO_RISPOSTA_ELEMENT_ESITO = "Esito";
  48.     public static final String NOTIFICA_ESITO_RISPOSTA_ELEMENT_SCARTO_ESITO = "ScartoEsito";
  49.     public static final String NOTIFICA_ESITO_RISPOSTA_ELEMENT_SCARTO_ESITO_NOME_FILE = "NomeFile";
  50.     public static final String NOTIFICA_ESITO_RISPOSTA_ELEMENT_SCARTO_ESITO_FILE = "File";
  51.    
  52.     public static final String NOTIFICA_ESITO_INTEGRAZIONE_URLBASED_NOME_FILE  = "NomeFile";    
  53.     public static final String NOTIFICA_ESITO_INTEGRAZIONE_TRASPORTO_NOME_FILE_1  = "SDI-NomeFile";
  54.     public static final String NOTIFICA_ESITO_INTEGRAZIONE_TRASPORTO_NOME_FILE_2  = "GovWay-SDI-NomeFile";
  55.    
  56.     public static final String NOTIFICA_ESITO_INTEGRAZIONE_URLBASED_IDENTIFICATIVO_SDI  = "IdentificativoSdI";  
  57.     public static final String NOTIFICA_ESITO_INTEGRAZIONE_TRASPORTO_IDENTIFICATIVO_SDI_1  = "SDI-IdentificativoSdI";
  58.     public static final String NOTIFICA_ESITO_INTEGRAZIONE_TRASPORTO_IDENTIFICATIVO_SDI_2  = "GovWay-SDI-IdentificativoSdI";

  59. }