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

changeset 0
373ffda63c9a
child 637
9c07ef4934dd
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/ver1_1/HeaderElement1_1Impl.java	Wed Apr 27 01:27:09 2016 +0800
     1.3 @@ -0,0 +1,121 @@
     1.4 +/*
     1.5 + * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     1.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 + *
     1.8 + * This code is free software; you can redistribute it and/or modify it
     1.9 + * under the terms of the GNU General Public License version 2 only, as
    1.10 + * published by the Free Software Foundation.  Oracle designates this
    1.11 + * particular file as subject to the "Classpath" exception as provided
    1.12 + * by Oracle in the LICENSE file that accompanied this code.
    1.13 + *
    1.14 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.15 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.16 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.17 + * version 2 for more details (a copy is included in the LICENSE file that
    1.18 + * accompanied this code).
    1.19 + *
    1.20 + * You should have received a copy of the GNU General Public License version
    1.21 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.22 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.23 + *
    1.24 + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.25 + * or visit www.oracle.com if you need additional information or have any
    1.26 + * questions.
    1.27 + */
    1.28 +
    1.29 +/**
    1.30 +*
    1.31 +* @author SAAJ RI Development Team
    1.32 +*/
    1.33 +package com.sun.xml.internal.messaging.saaj.soap.ver1_1;
    1.34 +
    1.35 +import java.util.logging.Level;
    1.36 +import java.util.logging.Logger;
    1.37 +
    1.38 +import javax.xml.namespace.QName;
    1.39 +import javax.xml.soap.Name;
    1.40 +import javax.xml.soap.SOAPException;
    1.41 +import javax.xml.soap.SOAPElement;
    1.42 +
    1.43 +import com.sun.xml.internal.messaging.saaj.soap.SOAPDocumentImpl;
    1.44 +import com.sun.xml.internal.messaging.saaj.soap.impl.HeaderElementImpl;
    1.45 +import com.sun.xml.internal.messaging.saaj.soap.name.NameImpl;
    1.46 +import com.sun.xml.internal.messaging.saaj.util.LogDomainConstants;
    1.47 +
    1.48 +public class HeaderElement1_1Impl extends HeaderElementImpl {
    1.49 +
    1.50 +    protected static final Logger log =
    1.51 +        Logger.getLogger(LogDomainConstants.SOAP_VER1_1_DOMAIN,
    1.52 +                         "com.sun.xml.internal.messaging.saaj.soap.ver1_1.LocalStrings");
    1.53 +
    1.54 +    public HeaderElement1_1Impl(SOAPDocumentImpl ownerDoc, Name qname) {
    1.55 +        super(ownerDoc, qname);
    1.56 +    }
    1.57 +    public HeaderElement1_1Impl(SOAPDocumentImpl ownerDoc, QName qname) {
    1.58 +        super(ownerDoc, qname);
    1.59 +    }
    1.60 +
    1.61 +    public SOAPElement setElementQName(QName newName) throws SOAPException {
    1.62 +        HeaderElementImpl copy =
    1.63 +            new HeaderElement1_1Impl((SOAPDocumentImpl) getOwnerDocument(), newName);
    1.64 +        return replaceElementWithSOAPElement(this,copy);
    1.65 +    }
    1.66 +
    1.67 +    protected NameImpl getActorAttributeName() {
    1.68 +        return NameImpl.create("actor", null, NameImpl.SOAP11_NAMESPACE);
    1.69 +    }
    1.70 +
    1.71 +    // role not supported by SOAP 1.1
    1.72 +    protected NameImpl getRoleAttributeName() {
    1.73 +        log.log(
    1.74 +            Level.SEVERE,
    1.75 +            "SAAJ0302.ver1_1.hdr.attr.unsupported.in.SOAP1.1",
    1.76 +            new String[] { "Role" });
    1.77 +        throw new UnsupportedOperationException("Role not supported by SOAP 1.1");
    1.78 +    }
    1.79 +
    1.80 +    protected NameImpl getMustunderstandAttributeName() {
    1.81 +        return NameImpl.create("mustUnderstand", null, NameImpl.SOAP11_NAMESPACE);
    1.82 +    }
    1.83 +
    1.84 +    // mustUnderstand attribute has literal value "1" or "0"
    1.85 +    protected String getMustunderstandLiteralValue(boolean mustUnderstand) {
    1.86 +        return (mustUnderstand == true ? "1" : "0");
    1.87 +    }
    1.88 +
    1.89 +    protected boolean getMustunderstandAttributeValue(String mu) {
    1.90 +        if ("1".equals(mu) || "true".equalsIgnoreCase(mu))
    1.91 +            return true;
    1.92 +        return false;
    1.93 +    }
    1.94 +
    1.95 +    // relay not supported by SOAP 1.1
    1.96 +    protected NameImpl getRelayAttributeName() {
    1.97 +        log.log(
    1.98 +            Level.SEVERE,
    1.99 +            "SAAJ0302.ver1_1.hdr.attr.unsupported.in.SOAP1.1",
   1.100 +            new String[] { "Relay" });
   1.101 +        throw new UnsupportedOperationException("Relay not supported by SOAP 1.1");
   1.102 +    }
   1.103 +
   1.104 +    protected String getRelayLiteralValue(boolean relayAttr) {
   1.105 +        log.log(
   1.106 +            Level.SEVERE,
   1.107 +            "SAAJ0302.ver1_1.hdr.attr.unsupported.in.SOAP1.1",
   1.108 +            new String[] { "Relay" });
   1.109 +        throw new UnsupportedOperationException("Relay not supported by SOAP 1.1");
   1.110 +    }
   1.111 +
   1.112 +    protected boolean getRelayAttributeValue(String mu) {
   1.113 +        log.log(
   1.114 +            Level.SEVERE,
   1.115 +            "SAAJ0302.ver1_1.hdr.attr.unsupported.in.SOAP1.1",
   1.116 +            new String[] { "Relay" });
   1.117 +        throw new UnsupportedOperationException("Relay not supported by SOAP 1.1");
   1.118 +    }
   1.119 +
   1.120 +    protected String getActorOrRole() {
   1.121 +        return getActor();
   1.122 +    }
   1.123 +
   1.124 +}

mercurial