Costanti.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.message.soap.wsaddressing;

  21. /**
  22.  * Costanti
  23.  *
  24.  *
  25.  * @author Poli Andrea (apoli@link.it)
  26.  * @author $Author$
  27.  * @version $Rev$, $Date$
  28.  */
  29. public class Costanti {
  30.        
  31.     public static final String WSA_NAMESPACE = "http://www.w3.org/2005/08/addressing";
  32.     public static final String WSA_PREFIX = "wsa";
  33.    
  34.     public static final String WSA_RELATIONSHIP_TYPE_REPLY = "http://www.w3.org/2005/08/addressing/reply";
  35.     public static final String WSA_SOAP_HEADER_TO = "To";
  36.     public static final String WSA_SOAP_HEADER_FROM = "From";
  37.     public static final String WSA_SOAP_HEADER_ACTION = "Action";
  38.     public static final String WSA_SOAP_HEADER_ID = "MessageID";
  39.     public static final String WSA_SOAP_HEADER_RELATES_TO = "RelatesTo";
  40.     public static final String WSA_SOAP_HEADER_RELATES_TO_ATTRIBUTE = "RelationshipType";
  41.     public static final String WSA_SOAP_HEADER_REPLY_TO = "ReplyTo";
  42.     public static final String WSA_SOAP_HEADER_FAULT_TO = "FaultTo";
  43.        
  44.     public static final String WSA_SOAP_HEADER_EPR_ADDRESS = "Address";
  45.    
  46.     public static final String WSA_SOAP_HEADER_EPR_ADDRESS_ANONYMOUS = "http://www.w3.org/2005/08/addressing/anonymous";
  47.    

  48. }