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  */
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 
HeaderElement1_1Impl(SOAPDocumentImpl ownerDoc, Name qname)51     public HeaderElement1_1Impl(SOAPDocumentImpl ownerDoc, Name qname) {
52         super(ownerDoc, qname);
53     }
HeaderElement1_1Impl(SOAPDocumentImpl ownerDoc, QName qname)54     public HeaderElement1_1Impl(SOAPDocumentImpl ownerDoc, QName qname) {
55         super(ownerDoc, qname);
56     }
57 
setElementQName(QName newName)58     public SOAPElement setElementQName(QName newName) throws SOAPException {
59         HeaderElementImpl copy =
60             new HeaderElement1_1Impl((SOAPDocumentImpl) getOwnerDocument(), newName);
61         return replaceElementWithSOAPElement(this,copy);
62     }
63 
getActorAttributeName()64     protected NameImpl getActorAttributeName() {
65         return NameImpl.create("actor", null, NameImpl.SOAP11_NAMESPACE);
66     }
67 
68     // role not supported by SOAP 1.1
getRoleAttributeName()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     }
76 
getMustunderstandAttributeName()77     protected NameImpl getMustunderstandAttributeName() {
78         return NameImpl.create("mustUnderstand", null, NameImpl.SOAP11_NAMESPACE);
79     }
80 
81     // mustUnderstand attribute has literal value "1" or "0"
getMustunderstandLiteralValue(boolean mustUnderstand)82     protected String getMustunderstandLiteralValue(boolean mustUnderstand) {
83         return (mustUnderstand == true ? "1" : "0");
84     }
85 
getMustunderstandAttributeValue(String mu)86     protected boolean getMustunderstandAttributeValue(String mu) {
87         if ("1".equals(mu) || "true".equalsIgnoreCase(mu))
88             return true;
89         return false;
90     }
91 
92     // relay not supported by SOAP 1.1
getRelayAttributeName()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     }
100 
getRelayLiteralValue(boolean relayAttr)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     }
108 
getRelayAttributeValue(String mu)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     }
116 
getActorOrRole()117     protected String getActorOrRole() {
118         return getActor();
119     }
120 
121 }
122