01: /*
02: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
03: *
04: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
05: *
06: * The contents of this file are subject to the terms of either the GNU
07: * General Public License Version 2 only ("GPL") or the Common Development
08: * and Distribution License("CDDL") (collectively, the "License"). You
09: * may not use this file except in compliance with the License. You can obtain
10: * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
11: * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
12: * language governing permissions and limitations under the License.
13: *
14: * When distributing the software, include this License Header Notice in each
15: * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
16: * Sun designates this particular file as subject to the "Classpath" exception
17: * as provided by Sun in the GPL Version 2 section of the License file that
18: * accompanied this code. If applicable, add the following below the License
19: * Header, with the fields enclosed by brackets [] replaced by your own
20: * identifying information: "Portions Copyrighted [year]
21: * [name of copyright owner]"
22: *
23: * Contributor(s):
24: *
25: * If you wish your version of this file to be governed by only the CDDL or
26: * only the GPL Version 2, indicate your decision by adding "[Contributor]
27: * elects to include this software in this distribution under the [CDDL or GPL
28: * Version 2] license." If you don't indicate a single choice of license, a
29: * recipient has the option to distribute your version of this file under
30: * either the CDDL, the GPL Version 2 or to extend the choice of license to
31: * its licensees as provided above. However, if you add GPL Version 2 code
32: * and therefore, elected the GPL Version 2 license, then the option applies
33: * only if the new code is made subject to such option by the copyright
34: * holder.
35: */
36:
37: package com.sun.xml.ws.message;
38:
39: import javax.xml.namespace.QName;
40: import javax.xml.soap.SOAPException;
41: import javax.xml.soap.SOAPHeader;
42: import javax.xml.soap.SOAPHeaderElement;
43: import javax.xml.soap.SOAPMessage;
44: import javax.xml.stream.XMLStreamException;
45: import javax.xml.stream.XMLStreamWriter;
46:
47: /**
48: * WS-Addressing <RelatesTo> header.
49: *
50: * Used for outbound only.
51: *
52: * @author Arun Gupta
53: */
54: public final class RelatesToHeader extends StringHeader {
55: protected String type;
56: private final QName typeAttributeName;
57:
58: public RelatesToHeader(QName name, String messageId, String type) {
59: super (name, messageId);
60: this .type = type;
61: this .typeAttributeName = new QName(name.getNamespaceURI(),
62: "type");
63: }
64:
65: public RelatesToHeader(QName name, String mid) {
66: super (name, mid);
67: this .typeAttributeName = new QName(name.getNamespaceURI(),
68: "type");
69: }
70:
71: public String getType() {
72: return type;
73: }
74:
75: @Override
76: public void writeTo(XMLStreamWriter w) throws XMLStreamException {
77: w.writeStartElement("", name.getLocalPart(), name
78: .getNamespaceURI());
79: w.writeDefaultNamespace(name.getNamespaceURI());
80: if (type != null)
81: w.writeAttribute("type", type);
82: w.writeCharacters(value);
83: w.writeEndElement();
84: }
85:
86: @Override
87: public void writeTo(SOAPMessage saaj) throws SOAPException {
88: SOAPHeader header = saaj.getSOAPHeader();
89: SOAPHeaderElement she = header.addHeaderElement(name);
90:
91: if (type != null)
92: she.addAttribute(typeAttributeName, type);
93: she.addTextNode(value);
94: }
95: }
|