src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/soap/SOAP12Constants.java

Thu, 31 Aug 2017 15:18:52 +0800

author
aoqi
date
Thu, 31 Aug 2017 15:18:52 +0800
changeset 637
9c07ef4934dd
parent 368
0989ad8c0860
parent 0
373ffda63c9a
permissions
-rw-r--r--

merge

     1 /*
     2  * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Oracle in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    24  */
    26 package com.sun.xml.internal.ws.encoding.soap;
    28 import com.sun.xml.internal.ws.encoding.soap.streaming.SOAP12NamespaceConstants;
    30 import javax.xml.namespace.QName;
    32 /**
    33  *
    34  * @author WS Development Team
    35  */
    36 public class SOAP12Constants {
    38     public static final String URI_ENVELOPE = SOAP12NamespaceConstants.ENVELOPE;
    39     public static final String URI_ENCODING = "http://schemas.xmlsoap.org/soap/encoding/";
    40     public static final String URI_HTTP = SOAP12NamespaceConstants.TRANSPORT_HTTP;
    41     public static final String URI_SOAP_RPC = SOAP12NamespaceConstants.SOAP_RPC;
    44     public static final QName QNAME_SOAP_RPC = new QName(URI_SOAP_RPC, "rpc");
    45     public static final QName QNAME_SOAP_RESULT = new QName(URI_SOAP_RPC, "result");
    47     public static final QName QNAME_SOAP_ENVELOPE    = new QName(URI_ENVELOPE, "Envelope");
    48     public static final QName QNAME_SOAP_BODY    = new QName(URI_ENVELOPE, "Body");
    49     public static final QName QNAME_SOAP_HEADER    = new QName(URI_ENVELOPE, "Header");
    50     public static final QName QNAME_ENVELOPE_ENCODINGSTYLE = new QName(URI_ENVELOPE, "encodingStyle");
    51     public static final QName QNAME_SOAP_FAULT             = new QName(URI_ENVELOPE, "Fault");
    52     public static final QName QNAME_MUSTUNDERSTAND         = new QName(URI_ENVELOPE, "mustUnderstand");
    53     public static final QName QNAME_ROLE                   = new QName(URI_ENVELOPE, "role");
    55     public static final QName QNAME_NOT_UNDERSTOOD         = new QName(URI_ENVELOPE, "NotUnderstood");
    57     //fault
    58     public static final QName QNAME_FAULT_CODE             = new QName(URI_ENVELOPE, "Code");
    59     public static final QName QNAME_FAULT_SUBCODE          = new QName(URI_ENVELOPE, "Subcode");
    60     public static final QName QNAME_FAULT_VALUE            = new QName(URI_ENVELOPE, "Value");
    61     public static final QName QNAME_FAULT_REASON           = new QName(URI_ENVELOPE, "Reason");
    62     public static final QName QNAME_FAULT_NODE             = new QName(URI_ENVELOPE, "Node");
    63     public static final QName QNAME_FAULT_ROLE             = new QName(URI_ENVELOPE, "Role");
    64     public static final QName QNAME_FAULT_DETAIL           = new QName(URI_ENVELOPE, "Detail");
    65     public static final QName QNAME_FAULT_REASON_TEXT             = new QName(URI_ENVELOPE, "Text");
    66     public final static QName QNAME_UPGRADE                = new QName(URI_ENVELOPE, "Upgrade");
    67     public final static QName QNAME_UPGRADE_SUPPORTED_ENVELOPE           = new QName(URI_ENVELOPE, "SupportedEnvelope");
    70     //fault codes
    71     public final static QName FAULT_CODE_MUST_UNDERSTAND   = new QName(URI_ENVELOPE, "MustUnderstand");
    72     public final static QName FAULT_CODE_MISUNDERSTOOD   = new QName(URI_ENVELOPE, "Misunderstood");
    73     public final static QName FAULT_CODE_VERSION_MISMATCH  = new QName(URI_ENVELOPE, "VersionMismatch");
    74     public final static QName FAULT_CODE_DATA_ENCODING_UNKNOWN = new QName(URI_ENVELOPE, "DataEncodingUnknown");
    75     public final static QName FAULT_CODE_PROCEDURE_NOT_PRESENT = new QName(URI_ENVELOPE, "ProcedureNotPresent");
    76     public final static QName FAULT_CODE_BAD_ARGUMENTS      = new QName(URI_ENVELOPE, "BadArguments");
    77 }

mercurial