001 /*
002 * Licensed to the Apache Software Foundation (ASF) under one
003 * or more contributor license agreements. See the NOTICE file
004 * distributed with this work for additional information
005 * regarding copyright ownership. The ASF licenses this file
006 * to you under the Apache License, Version 2.0 (the
007 * "License"); you may not use this file except in compliance
008 * with the License. You may obtain a copy of the License at
009 *
010 * http://www.apache.org/licenses/LICENSE-2.0
011 *
012 * Unless required by applicable law or agreed to in writing,
013 * software distributed under the License is distributed on an
014 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015 * KIND, either express or implied. See the License for the
016 * specific language governing permissions and limitations
017 * under the License.
018 */
019
020 package javax.xml.soap;
021
022 /** The definition of constants pertaining to the SOAP 1.1 protocol. */
023 public interface SOAPConstants {
024
025 /** The namespace identifier for the SOAP envelope. */
026 public static final String URI_NS_SOAP_ENVELOPE =
027 "http://schemas.xmlsoap.org/soap/envelope/";
028
029 /**
030 * The namespace identifier for the SOAP encoding (see section 5 of
031 * the SOAP 1.1 specification).
032 */
033 public static final String URI_NS_SOAP_ENCODING =
034 "http://schemas.xmlsoap.org/soap/encoding/";
035
036 /**
037 * The URI identifying the first application processing a SOAP request as the intended
038 * actor for a SOAP header entry (see section 4.2.2 of the SOAP 1.1 specification).
039 */
040 public static final String URI_SOAP_ACTOR_NEXT =
041 "http://schemas.xmlsoap.org/soap/actor/next";
042 }