1 /* 2 * Copyright (C) The MX4J Contributors. 3 * All rights reserved. 4 * 5 * This software is distributed under the terms of the MX4J License version 1.0. 6 * See the terms of the MX4J License in the documentation provided with this software. 7 */ 8 9 package mx4j.tools.remote.soap; 10 11 /** 12 * @version $Revision: 1.5 $ 13 */ 14 class SOAPConstants 15 { 16 static final String NAMESPACE_URI = "http://mx4j.sourceforge.net/remote/soap/1.0"; 17 18 static final String CONNECTION_ID_HEADER_NAME = "connectionId"; 19 20 private SOAPConstants() 21 { 22 } 23 } 24