src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/ver1_1/HeaderElement1_1Impl.java

Sun, 15 Dec 2013 23:35:45 +0100

author
mkos
date
Sun, 15 Dec 2013 23:35:45 +0100
changeset 494
2fcd3ddb57a6
parent 368
0989ad8c0860
child 637
9c07ef4934dd
permissions
-rw-r--r--

8025152: Enhance activation set up
8028388: 9 jaxws tests failed in nightly build with java.lang.ClassCastException
Summary: fix also reviewed by Bill Shannon, Alexander Fomin
Reviewed-by: dfuchs, hawtin, mgrebac
Contributed-by: bill.shannon@oracle.com

     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 /**
    27 *
    28 * @author SAAJ RI Development Team
    29 */
    30 package com.sun.xml.internal.messaging.saaj.soap.ver1_1;
    32 import java.util.logging.Level;
    33 import java.util.logging.Logger;
    35 import javax.xml.namespace.QName;
    36 import javax.xml.soap.Name;
    37 import javax.xml.soap.SOAPException;
    38 import javax.xml.soap.SOAPElement;
    40 import com.sun.xml.internal.messaging.saaj.soap.SOAPDocumentImpl;
    41 import com.sun.xml.internal.messaging.saaj.soap.impl.HeaderElementImpl;
    42 import com.sun.xml.internal.messaging.saaj.soap.name.NameImpl;
    43 import com.sun.xml.internal.messaging.saaj.util.LogDomainConstants;
    45 public class HeaderElement1_1Impl extends HeaderElementImpl {
    47     protected static final Logger log =
    48         Logger.getLogger(LogDomainConstants.SOAP_VER1_1_DOMAIN,
    49                          "com.sun.xml.internal.messaging.saaj.soap.ver1_1.LocalStrings");
    51     public HeaderElement1_1Impl(SOAPDocumentImpl ownerDoc, Name qname) {
    52         super(ownerDoc, qname);
    53     }
    54     public HeaderElement1_1Impl(SOAPDocumentImpl ownerDoc, QName qname) {
    55         super(ownerDoc, qname);
    56     }
    58     public SOAPElement setElementQName(QName newName) throws SOAPException {
    59         HeaderElementImpl copy =
    60             new HeaderElement1_1Impl((SOAPDocumentImpl) getOwnerDocument(), newName);
    61         return replaceElementWithSOAPElement(this,copy);
    62     }
    64     protected NameImpl getActorAttributeName() {
    65         return NameImpl.create("actor", null, NameImpl.SOAP11_NAMESPACE);
    66     }
    68     // role not supported by SOAP 1.1
    69     protected NameImpl getRoleAttributeName() {
    70         log.log(
    71             Level.SEVERE,
    72             "SAAJ0302.ver1_1.hdr.attr.unsupported.in.SOAP1.1",
    73             new String[] { "Role" });
    74         throw new UnsupportedOperationException("Role not supported by SOAP 1.1");
    75     }
    77     protected NameImpl getMustunderstandAttributeName() {
    78         return NameImpl.create("mustUnderstand", null, NameImpl.SOAP11_NAMESPACE);
    79     }
    81     // mustUnderstand attribute has literal value "1" or "0"
    82     protected String getMustunderstandLiteralValue(boolean mustUnderstand) {
    83         return (mustUnderstand == true ? "1" : "0");
    84     }
    86     protected boolean getMustunderstandAttributeValue(String mu) {
    87         if ("1".equals(mu) || "true".equalsIgnoreCase(mu))
    88             return true;
    89         return false;
    90     }
    92     // relay not supported by SOAP 1.1
    93     protected NameImpl getRelayAttributeName() {
    94         log.log(
    95             Level.SEVERE,
    96             "SAAJ0302.ver1_1.hdr.attr.unsupported.in.SOAP1.1",
    97             new String[] { "Relay" });
    98         throw new UnsupportedOperationException("Relay not supported by SOAP 1.1");
    99     }
   101     protected String getRelayLiteralValue(boolean relayAttr) {
   102         log.log(
   103             Level.SEVERE,
   104             "SAAJ0302.ver1_1.hdr.attr.unsupported.in.SOAP1.1",
   105             new String[] { "Relay" });
   106         throw new UnsupportedOperationException("Relay not supported by SOAP 1.1");
   107     }
   109     protected boolean getRelayAttributeValue(String mu) {
   110         log.log(
   111             Level.SEVERE,
   112             "SAAJ0302.ver1_1.hdr.attr.unsupported.in.SOAP1.1",
   113             new String[] { "Relay" });
   114         throw new UnsupportedOperationException("Relay not supported by SOAP 1.1");
   115     }
   117     protected String getActorOrRole() {
   118         return getActor();
   119     }
   121 }

mercurial