01: /*
02: * The contents of this file are subject to the terms
03: * of the Common Development and Distribution License
04: * (the "License"). You may not use this file except
05: * in compliance with the License.
06: *
07: * You can obtain a copy of the license at
08: * https://jwsdp.dev.java.net/CDDLv1.0.html
09: * See the License for the specific language governing
10: * permissions and limitations under the License.
11: *
12: * When distributing Covered Code, include this CDDL
13: * HEADER in each file and include the License file at
14: * https://jwsdp.dev.java.net/CDDLv1.0.html If applicable,
15: * add the following below this CDDL HEADER, with the
16: * fields enclosed by brackets "[]" replaced with your
17: * own identifying information: Portions Copyright [yyyy]
18: * [name of copyright owner]
19: */
20: /*
21: * $Id: DetailEntry1_1Impl.java,v 1.2 2007/07/16 16:41:24 ofung Exp $
22: */
23:
24: /*
25: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
26: *
27: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
28: *
29: * The contents of this file are subject to the terms of either the GNU
30: * General Public License Version 2 only ("GPL") or the Common Development
31: * and Distribution License("CDDL") (collectively, the "License"). You
32: * may not use this file except in compliance with the License. You can obtain
33: * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
34: * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
35: * language governing permissions and limitations under the License.
36: *
37: * When distributing the software, include this License Header Notice in each
38: * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
39: * Sun designates this particular file as subject to the "Classpath" exception
40: * as provided by Sun in the GPL Version 2 section of the License file that
41: * accompanied this code. If applicable, add the following below the License
42: * Header, with the fields enclosed by brackets [] replaced by your own
43: * identifying information: "Portions Copyrighted [year]
44: * [name of copyright owner]"
45: *
46: * Contributor(s):
47: *
48: * If you wish your version of this file to be governed by only the CDDL or
49: * only the GPL Version 2, indicate your decision by adding "[Contributor]
50: * elects to include this software in this distribution under the [CDDL or GPL
51: * Version 2] license." If you don't indicate a single choice of license, a
52: * recipient has the option to distribute your version of this file under
53: * either the CDDL, the GPL Version 2 or to extend the choice of license to
54: * its licensees as provided above. However, if you add GPL Version 2 code
55: * and therefore, elected the GPL Version 2 license, then the option applies
56: * only if the new code is made subject to such option by the copyright
57: * holder.
58: */
59:
60: /**
61: *
62: * @author SAAJ RI Development Team
63: */package com.sun.xml.messaging.saaj.soap.ver1_1;
64:
65: import javax.xml.namespace.QName;
66: import javax.xml.soap.Name;
67: import javax.xml.soap.SOAPElement;
68: import javax.xml.soap.SOAPException;
69:
70: import com.sun.xml.messaging.saaj.soap.SOAPDocumentImpl;
71: import com.sun.xml.messaging.saaj.soap.impl.DetailEntryImpl;
72:
73: public class DetailEntry1_1Impl extends DetailEntryImpl {
74:
75: public DetailEntry1_1Impl(SOAPDocumentImpl ownerDoc, Name qname) {
76: super (ownerDoc, qname);
77: }
78:
79: public DetailEntry1_1Impl(SOAPDocumentImpl ownerDoc, QName qname) {
80: super (ownerDoc, qname);
81: }
82:
83: public SOAPElement setElementQName(QName newName)
84: throws SOAPException {
85: DetailEntryImpl copy = new DetailEntry1_1Impl(
86: (SOAPDocumentImpl) getOwnerDocument(), newName);
87: return replaceElementWithSOAPElement(this, copy);
88: }
89: }
|