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 in
05: * compliance with the License.
06: *
07: * You can obtain a copy of the license at
08: * https://glassfish.dev.java.net/public/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 Notice in each file and include the License file
14: * at https://glassfish.dev.java.net/public/CDDLv1.0.html.
15: * If applicable, add the following below the CDDL Header,
16: * with the fields enclosed by brackets [] replaced by
17: * you own identifying information:
18: * "Portions Copyrighted [year] [name of copyright owner]"
19: *
20: * Copyright 2006 Sun Microsystems Inc. All Rights Reserved
21: */
22:
23: package com.sun.xml.wss.impl.misc;
24:
25: import javax.xml.soap.*;
26: import javax.xml.namespace.QName;
27:
28: import java.util.Iterator;
29:
30: public class SOAPElementExtension {
31:
32: public SOAPElement addChildElement(QName qname)
33: throws SOAPException {
34: throw new UnsupportedOperationException("Not Yet Implemented");
35: }
36:
37: public SOAPElement addAttribute(QName qname, String value)
38: throws SOAPException {
39: throw new UnsupportedOperationException("Not Yet Implemented");
40: }
41:
42: public String getAttributeValue(QName qname) {
43: throw new UnsupportedOperationException("Not Yet Implemented");
44: }
45:
46: public QName createQName(String localName, String prefix)
47: throws SOAPException {
48: throw new UnsupportedOperationException("Not Yet Implemented");
49: }
50:
51: public QName getElementQName() {
52: throw new UnsupportedOperationException("Not Yet Implemented");
53: }
54:
55: public SOAPElement setElementQName(QName newName)
56: throws SOAPException {
57: throw new UnsupportedOperationException("Not Yet Implemented");
58: }
59:
60: public boolean removeAttribute(QName qname) {
61: throw new UnsupportedOperationException("Not Yet Implemented");
62: }
63:
64: public Iterator getChildElements(QName qname) {
65: throw new UnsupportedOperationException("Not Yet Implemented");
66: }
67:
68: }
|