Source Code Cross Referenced for FaultElement1_2Impl.java in  » 6.0-JDK-Modules » saaj » com » sun » xml » messaging » saaj » soap » ver1_2 » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » saaj » com.sun.xml.messaging.saaj.soap.ver1_2 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * The contents of this file are subject to the terms
003:         * of the Common Development and Distribution License
004:         * (the "License").  You may not use this file except
005:         * in compliance with the License.
006:         *
007:         * You can obtain a copy of the license at
008:         * https://jwsdp.dev.java.net/CDDLv1.0.html
009:         * See the License for the specific language governing
010:         * permissions and limitations under the License.
011:         *
012:         * When distributing Covered Code, include this CDDL
013:         * HEADER in each file and include the License file at
014:         * https://jwsdp.dev.java.net/CDDLv1.0.html  If applicable,
015:         * add the following below this CDDL HEADER, with the
016:         * fields enclosed by brackets "[]" replaced with your
017:         * own identifying information: Portions Copyright [yyyy]
018:         * [name of copyright owner]
019:         */
020:        /*
021:         * $Id: FaultElement1_2Impl.java,v 1.2 2007/07/16 16:41:24 ofung Exp $
022:         */
023:
024:        /*
025:         * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
026:         * 
027:         * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
028:         * 
029:         * The contents of this file are subject to the terms of either the GNU
030:         * General Public License Version 2 only ("GPL") or the Common Development
031:         * and Distribution License("CDDL") (collectively, the "License").  You
032:         * may not use this file except in compliance with the License. You can obtain
033:         * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
034:         * or glassfish/bootstrap/legal/LICENSE.txt.  See the License for the specific
035:         * language governing permissions and limitations under the License.
036:         * 
037:         * When distributing the software, include this License Header Notice in each
038:         * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
039:         * Sun designates this particular file as subject to the "Classpath" exception
040:         * as provided by Sun in the GPL Version 2 section of the License file that
041:         * accompanied this code.  If applicable, add the following below the License
042:         * Header, with the fields enclosed by brackets [] replaced by your own
043:         * identifying information: "Portions Copyrighted [year]
044:         * [name of copyright owner]"
045:         * 
046:         * Contributor(s):
047:         * 
048:         * If you wish your version of this file to be governed by only the CDDL or
049:         * only the GPL Version 2, indicate your decision by adding "[Contributor]
050:         * elects to include this software in this distribution under the [CDDL or GPL
051:         * Version 2] license."  If you don't indicate a single choice of license, a
052:         * recipient has the option to distribute your version of this file under
053:         * either the CDDL, the GPL Version 2 or to extend the choice of license to
054:         * its licensees as provided above.  However, if you add GPL Version 2 code
055:         * and therefore, elected the GPL Version 2 license, then the option applies
056:         * only if the new code is made subject to such option by the copyright
057:         * holder.
058:         */
059:
060:        /**
061:         *
062:         * @author SAAJ RI Development Team
063:         */package com.sun.xml.messaging.saaj.soap.ver1_2;
064:
065:        import javax.xml.namespace.QName;
066:        import javax.xml.soap.SOAPException;
067:        import javax.xml.soap.SOAPElement;
068:        import javax.xml.soap.Name;
069:
070:        import com.sun.xml.messaging.saaj.soap.SOAPDocumentImpl;
071:        import com.sun.xml.messaging.saaj.soap.impl.FaultElementImpl;
072:        import com.sun.xml.messaging.saaj.soap.name.NameImpl;
073:        import com.sun.xml.messaging.saaj.SOAPExceptionImpl;
074:
075:        public class FaultElement1_2Impl extends FaultElementImpl {
076:
077:            public FaultElement1_2Impl(SOAPDocumentImpl ownerDoc, NameImpl qname) {
078:                super (ownerDoc, qname);
079:            }
080:
081:            public FaultElement1_2Impl(SOAPDocumentImpl ownerDoc, QName qname) {
082:                super (ownerDoc, qname);
083:            }
084:
085:            public FaultElement1_2Impl(SOAPDocumentImpl ownerDoc,
086:                    String localName) {
087:                super (ownerDoc, NameImpl.createSOAP12Name(localName));
088:            }
089:
090:            protected boolean isStandardFaultElement() {
091:                String localName = elementQName.getLocalPart();
092:                if (localName.equalsIgnoreCase("code")
093:                        || localName.equalsIgnoreCase("reason")
094:                        || localName.equalsIgnoreCase("node")
095:                        || localName.equalsIgnoreCase("role")) {
096:                    return true;
097:                }
098:                return false;
099:            }
100:
101:            public SOAPElement setElementQName(QName newName)
102:                    throws SOAPException {
103:                if (!isStandardFaultElement()) {
104:                    FaultElement1_2Impl copy = new FaultElement1_2Impl(
105:                            (SOAPDocumentImpl) getOwnerDocument(), newName);
106:                    return replaceElementWithSOAPElement(this , copy);
107:                } else {
108:                    return super .setElementQName(newName);
109:                }
110:            }
111:
112:            public void setEncodingStyle(String encodingStyle)
113:                    throws SOAPException {
114:                log.severe("SAAJ0408.ver1_2.no.encodingStyle.in.fault.child");
115:                throw new SOAPExceptionImpl(
116:                        "encodingStyle attribute cannot appear on a Fault child element");
117:            }
118:
119:            public SOAPElement addAttribute(Name name, String value)
120:                    throws SOAPException {
121:                if (name.getLocalName().equals("encodingStyle")
122:                        && name.getURI().equals(NameImpl.SOAP12_NAMESPACE)) {
123:                    setEncodingStyle(value);
124:                }
125:                return super .addAttribute(name, value);
126:            }
127:
128:            public SOAPElement addAttribute(QName name, String value)
129:                    throws SOAPException {
130:                if (name.getLocalPart().equals("encodingStyle")
131:                        && name.getNamespaceURI().equals(
132:                                NameImpl.SOAP12_NAMESPACE)) {
133:                    setEncodingStyle(value);
134:                }
135:                return super.addAttribute(name, value);
136:            }
137:        }
w__w___w_.___j_a_v__a_2___s___._c_o___m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.