KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > axis2 > saaj > SOAPFactoryImpl


1 /*
2  * Copyright 2004,2005 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.apache.axis2.saaj;
17
18 import org.apache.axis2.om.OMAbstractFactory;
19 import org.apache.axis2.om.OMElement;
20
21 import javax.xml.soap.Detail JavaDoc;
22 import javax.xml.soap.Name JavaDoc;
23 import javax.xml.soap.SOAPElement JavaDoc;
24 import javax.xml.soap.SOAPException JavaDoc;
25
26 /**
27  * @author shaas02
28  *
29  * TODO To change the template for this generated type comment go to
30  * Window - Preferences - Java - Code Style - Code Templates
31  */

32 public class SOAPFactoryImpl extends javax.xml.soap.SOAPFactory JavaDoc {
33
34     /* (non-Javadoc)
35      * @see javax.xml.soap.SOAPFactory#createElement(javax.xml.soap.Name)
36      */

37     public SOAPElement JavaDoc createElement(Name JavaDoc name) throws SOAPException JavaDoc {
38         // TODO Auto-generated method stub
39
return null;
40     }
41
42     /* (non-Javadoc)
43      * @see javax.xml.soap.SOAPFactory#createElement(java.lang.String)
44      */

45     public SOAPElement JavaDoc createElement(String JavaDoc localName) throws SOAPException JavaDoc {
46         // TODO Auto-generated method stub
47
return null;
48     }
49
50     /* (non-Javadoc)
51      * @see javax.xml.soap.SOAPFactory#createElement(java.lang.String, java.lang.String, java.lang.String)
52      */

53     public SOAPElement JavaDoc createElement(String JavaDoc localName, String JavaDoc prefix, String JavaDoc uri)
54             throws SOAPException JavaDoc {
55         OMElement newOMElement = OMAbstractFactory.getOMFactory().createOMElement(localName, uri, prefix);
56         return new SOAPElementImpl(newOMElement);
57     }
58
59     /* (non-Javadoc)
60      * @see javax.xml.soap.SOAPFactory#createDetail()
61      */

62     public Detail JavaDoc createDetail() throws SOAPException JavaDoc {
63         // TODO Auto-generated method stub
64
return null;
65     }
66
67     /* (non-Javadoc)
68      * @see javax.xml.soap.SOAPFactory#createName(java.lang.String, java.lang.String, java.lang.String)
69      */

70     public Name JavaDoc createName(String JavaDoc localName, String JavaDoc prefix, String JavaDoc uri)
71             throws SOAPException JavaDoc {
72         // TODO Auto-generated method stub
73
return null;
74     }
75
76     /* (non-Javadoc)
77      * @see javax.xml.soap.SOAPFactory#createName(java.lang.String)
78      */

79     public Name JavaDoc createName(String JavaDoc localName) throws SOAPException JavaDoc {
80         // TODO Auto-generated method stub
81
return null;
82     }
83
84 }
85
Popular Tags