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 
  45 public class HeaderElement1_1Impl extends HeaderElementImpl {
  46 
  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");
  50 
  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     }
  57 
  58     @Override
  59     public SOAPElement setElementQName(QName newName) throws SOAPException {
  60         HeaderElementImpl copy =
  61             new HeaderElement1_1Impl((SOAPDocumentImpl) getOwnerDocument(), newName);
  62         return replaceElementWithSOAPElement(this,copy);
  63     }
  64 
  65     @Override
  66     protected NameImpl getActorAttributeName() {
  67         return NameImpl.create("actor", null, NameImpl.SOAP11_NAMESPACE);
  68     }
  69 
  70     // role not supported by SOAP 1.1
  71     @Override
  72     protected NameImpl getRoleAttributeName() {
  73         log.log(
  74             Level.SEVERE,
  75             "SAAJ0302.ver1_1.hdr.attr.unsupported.in.SOAP1.1",
  76             new String[] { "Role" });
  77         throw new UnsupportedOperationException("Role not supported by SOAP 1.1");
  78     }
  79 
  80     @Override
  81     protected NameImpl getMustunderstandAttributeName() {
  82         return NameImpl.create("mustUnderstand", null, NameImpl.SOAP11_NAMESPACE);
  83     }
  84 
  85     // mustUnderstand attribute has literal value "1" or "0"
  86     @Override
  87     protected String getMustunderstandLiteralValue(boolean mustUnderstand) {
  88         return (mustUnderstand == true ? "1" : "0");
  89     }
  90 
  91     @Override
  92     protected boolean getMustunderstandAttributeValue(String mu) {
  93         if ("1".equals(mu) || "true".equalsIgnoreCase(mu))
  94             return true;
  95         return false;
  96     }
  97 
  98     // relay not supported by SOAP 1.1
  99     @Override
 100     protected NameImpl getRelayAttributeName() {
 101         log.log(
 102             Level.SEVERE,
 103             "SAAJ0302.ver1_1.hdr.attr.unsupported.in.SOAP1.1",
 104             new String[] { "Relay" });
 105         throw new UnsupportedOperationException("Relay not supported by SOAP 1.1");
 106     }
 107 
 108     @Override
 109     protected String getRelayLiteralValue(boolean relayAttr) {
 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     }
 116 
 117     @Override
 118     protected boolean getRelayAttributeValue(String mu) {
 119         log.log(
 120             Level.SEVERE,
 121             "SAAJ0302.ver1_1.hdr.attr.unsupported.in.SOAP1.1",
 122             new String[] { "Relay" });
 123         throw new UnsupportedOperationException("Relay not supported by SOAP 1.1");
 124     }
 125 
 126     @Override
 127     protected String getActorOrRole() {
 128         return getActor();
 129     }
 130 
 131 }