1 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 ; 22 import javax.xml.soap.Name ; 23 import javax.xml.soap.SOAPElement ; 24 import javax.xml.soap.SOAPException ; 25 26 32 public class SOAPFactoryImpl extends javax.xml.soap.SOAPFactory { 33 34 37 public SOAPElement createElement(Name name) throws SOAPException { 38 return null; 40 } 41 42 45 public SOAPElement createElement(String localName) throws SOAPException { 46 return null; 48 } 49 50 53 public SOAPElement createElement(String localName, String prefix, String uri) 54 throws SOAPException { 55 OMElement newOMElement = OMAbstractFactory.getOMFactory().createOMElement(localName, uri, prefix); 56 return new SOAPElementImpl(newOMElement); 57 } 58 59 62 public Detail createDetail() throws SOAPException { 63 return null; 65 } 66 67 70 public Name createName(String localName, String prefix, String uri) 71 throws SOAPException { 72 return null; 74 } 75 76 79 public Name createName(String localName) throws SOAPException { 80 return null; 82 } 83 84 } 85 | Popular Tags |