1 /*
   2  * Copyright (c) 1997, 2017, 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  */
  25 
  26 /**
  27 *
  28 * @author SAAJ RI Development Team
  29 */
  30 package com.sun.xml.internal.messaging.saaj.soap.ver1_1;
  31 
  32 import java.util.logging.Level;
  33 import java.util.logging.Logger;
  34 
  35 import javax.xml.namespace.QName;
  36 import javax.xml.soap.Name;
  37 import javax.xml.soap.SOAPException;
  38 import javax.xml.soap.SOAPElement;
  39 
  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;
  44 import org.w3c.dom.Element;
  45 
  46 public class HeaderElement1_1Impl extends HeaderElementImpl {
  47 
  48     protected static final Logger log =
  49         Logger.getLogger(LogDomainConstants.SOAP_VER1_1_DOMAIN,
  50                          "com.sun.xml.internal.messaging.saaj.soap.ver1_1.LocalStrings");
  51 
  52     public HeaderElement1_1Impl(SOAPDocumentImpl ownerDoc, Name qname) {
  53         super(ownerDoc, qname);
  54     }
  55     public HeaderElement1_1Impl(SOAPDocumentImpl ownerDoc, QName qname) {
  56         super(ownerDoc, qname);
  57     }
  58 
  59     public HeaderElement1_1Impl(SOAPDocumentImpl ownerDoc, Element domElement) {
  60         super(ownerDoc, domElement);
  61     }
  62 
  63     @Override
  64     public SOAPElement setElementQName(QName newName) throws SOAPException {
  65         HeaderElementImpl copy =
  66             new HeaderElement1_1Impl((SOAPDocumentImpl) getOwnerDocument(), newName);
  67         return replaceElementWithSOAPElement(this,copy);
  68     }
  69 
  70     @Override
  71     protected NameImpl getActorAttributeName() {
  72         return NameImpl.create("actor", null, NameImpl.SOAP11_NAMESPACE);
  73     }
  74 
  75     // role not supported by SOAP 1.1
  76     @Override
  77     protected NameImpl getRoleAttributeName() {
  78         log.log(
  79             Level.SEVERE,
  80             "SAAJ0302.ver1_1.hdr.attr.unsupported.in.SOAP1.1",
  81             new String[] { "Role" });
  82         throw new UnsupportedOperationException("Role not supported by SOAP 1.1");
  83     }
  84 
  85     @Override
  86     protected NameImpl getMustunderstandAttributeName() {
  87         return NameImpl.create("mustUnderstand", null, NameImpl.SOAP11_NAMESPACE);
  88     }
  89 
  90     // mustUnderstand attribute has literal value "1" or "0"
  91     @Override
  92     protected String getMustunderstandLiteralValue(boolean mustUnderstand) {
  93         return (mustUnderstand == true ? "1" : "0");
  94     }
  95 
  96     @Override
  97     protected boolean getMustunderstandAttributeValue(String mu) {
  98         if ("1".equals(mu) || "true".equalsIgnoreCase(mu))
  99             return true;
 100         return false;
 101     }
 102 
 103     // relay not supported by SOAP 1.1
 104     @Override
 105     protected NameImpl getRelayAttributeName() {
 106         log.log(
 107             Level.SEVERE,
 108             "SAAJ0302.ver1_1.hdr.attr.unsupported.in.SOAP1.1",
 109             new String[] { "Relay" });
 110         throw new UnsupportedOperationException("Relay not supported by SOAP 1.1");
 111     }
 112 
 113     @Override
 114     protected String getRelayLiteralValue(boolean relayAttr) {
 115         log.log(
 116             Level.SEVERE,
 117             "SAAJ0302.ver1_1.hdr.attr.unsupported.in.SOAP1.1",
 118             new String[] { "Relay" });
 119         throw new UnsupportedOperationException("Relay not supported by SOAP 1.1");
 120     }
 121 
 122     @Override
 123     protected boolean getRelayAttributeValue(String mu) {
 124         log.log(
 125             Level.SEVERE,
 126             "SAAJ0302.ver1_1.hdr.attr.unsupported.in.SOAP1.1",
 127             new String[] { "Relay" });
 128         throw new UnsupportedOperationException("Relay not supported by SOAP 1.1");
 129     }
 130 
 131     @Override
 132     protected String getActorOrRole() {
 133         return getActor();
 134     }
 135 
 136 }