src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/soap/SOAPHeader.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/tools/internal/ws/wsdl/document/soap/SOAPHeader.java	Wed Apr 27 01:27:09 2016 +0800
     1.3 @@ -0,0 +1,155 @@
     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 +package com.sun.tools.internal.ws.wsdl.document.soap;
    1.30 +
    1.31 +import com.sun.tools.internal.ws.wsdl.framework.*;
    1.32 +import org.xml.sax.Locator;
    1.33 +
    1.34 +import javax.xml.namespace.QName;
    1.35 +import java.util.ArrayList;
    1.36 +import java.util.Iterator;
    1.37 +import java.util.List;
    1.38 +
    1.39 +/**
    1.40 + * A SOAP header extension.
    1.41 + *
    1.42 + * @author WS Development Team
    1.43 + */
    1.44 +public class SOAPHeader extends ExtensionImpl {
    1.45 +
    1.46 +    public SOAPHeader(Locator locator) {
    1.47 +        super(locator);
    1.48 +        _faults = new ArrayList();
    1.49 +    }
    1.50 +
    1.51 +    public void add(SOAPHeaderFault fault) {
    1.52 +        _faults.add(fault);
    1.53 +    }
    1.54 +
    1.55 +    public Iterator faults() {
    1.56 +        return _faults.iterator();
    1.57 +    }
    1.58 +
    1.59 +    public QName getElementName() {
    1.60 +        return SOAPConstants.QNAME_HEADER;
    1.61 +    }
    1.62 +
    1.63 +    public String getNamespace() {
    1.64 +        return _namespace;
    1.65 +    }
    1.66 +
    1.67 +    public void setNamespace(String s) {
    1.68 +        _namespace = s;
    1.69 +    }
    1.70 +
    1.71 +    public SOAPUse getUse() {
    1.72 +        return _use;
    1.73 +    }
    1.74 +
    1.75 +    public void setUse(SOAPUse u) {
    1.76 +        _use = u;
    1.77 +    }
    1.78 +
    1.79 +    public boolean isEncoded() {
    1.80 +        return _use == SOAPUse.ENCODED;
    1.81 +    }
    1.82 +
    1.83 +    public boolean isLiteral() {
    1.84 +        return _use == SOAPUse.LITERAL;
    1.85 +    }
    1.86 +
    1.87 +    public String getEncodingStyle() {
    1.88 +        return _encodingStyle;
    1.89 +    }
    1.90 +
    1.91 +    public void setEncodingStyle(String s) {
    1.92 +        _encodingStyle = s;
    1.93 +    }
    1.94 +
    1.95 +    public String getPart() {
    1.96 +        return _part;
    1.97 +    }
    1.98 +
    1.99 +    public void setMessage(QName message) {
   1.100 +        _message = message;
   1.101 +    }
   1.102 +
   1.103 +    public QName getMessage() {
   1.104 +        return _message;
   1.105 +    }
   1.106 +
   1.107 +    public void setPart(String s) {
   1.108 +        _part = s;
   1.109 +    }
   1.110 +
   1.111 +    public void withAllSubEntitiesDo(EntityAction action) {
   1.112 +        super.withAllSubEntitiesDo(action);
   1.113 +
   1.114 +        for (Iterator iter = _faults.iterator(); iter.hasNext();) {
   1.115 +            action.perform((Entity) iter.next());
   1.116 +        }
   1.117 +    }
   1.118 +
   1.119 +    public void withAllQNamesDo(QNameAction action) {
   1.120 +        super.withAllQNamesDo(action);
   1.121 +
   1.122 +        if (_message != null) {
   1.123 +            action.perform(_message);
   1.124 +        }
   1.125 +    }
   1.126 +
   1.127 +    public void accept(ExtensionVisitor visitor) throws Exception {
   1.128 +        visitor.preVisit(this);
   1.129 +        for (Iterator iter = _faults.iterator(); iter.hasNext();) {
   1.130 +            ((SOAPHeaderFault) iter.next()).accept(visitor);
   1.131 +        }
   1.132 +        visitor.postVisit(this);
   1.133 +    }
   1.134 +
   1.135 +    public void validateThis() {
   1.136 +        if (_message == null) {
   1.137 +            failValidation("validation.missingRequiredAttribute", "message");
   1.138 +        }
   1.139 +        if (_part == null) {
   1.140 +            failValidation("validation.missingRequiredAttribute", "part");
   1.141 +        }
   1.142 +        // Fix for bug 4851427
   1.143 +        //        if (_use == null) {
   1.144 +        //            failValidation("validation.missingRequiredAttribute", "use");
   1.145 +        //        }
   1.146 +
   1.147 +        if(_use == SOAPUse.ENCODED) {
   1.148 +            throw new ValidationException("validation.unsupportedUse.encoded", getLocator().getLineNumber(),getLocator().getSystemId());
   1.149 +        }
   1.150 +    }
   1.151 +
   1.152 +    private String _encodingStyle;
   1.153 +    private String _namespace;
   1.154 +    private String _part;
   1.155 +    private QName _message;
   1.156 +    private SOAPUse _use=SOAPUse.LITERAL;
   1.157 +    private List _faults;
   1.158 +}

mercurial