Return-Path: Delivered-To: apmail-ws-axis-cvs-archive@www.apache.org Received: (qmail 17018 invoked from network); 1 Jul 2005 11:10:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 1 Jul 2005 11:10:30 -0000 Received: (qmail 44128 invoked by uid 500); 1 Jul 2005 11:08:56 -0000 Delivered-To: apmail-ws-axis-cvs-archive@ws.apache.org Received: (qmail 43860 invoked by uid 500); 1 Jul 2005 11:08:53 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 43240 invoked by uid 99); 1 Jul 2005 11:08:41 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 01 Jul 2005 04:08:25 -0700 Received: (qmail 16128 invoked by uid 65534); 1 Jul 2005 11:08:22 -0000 Message-ID: <20050701110822.16126.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r208745 [10/13] - in /webservices/axis/trunk/java: ./ etc/ modules/addressing/src/META-INF/ modules/addressing/src/org/apache/axis/ modules/addressing/src/org/apache/axis2/ modules/addressing/src/org/apache/axis2/handlers/ modules/addressin... Date: Fri, 01 Jul 2005 11:06:26 -0000 To: axis-cvs@ws.apache.org From: chinthaka@apache.org X-Mailer: svnmailer-1.0.2 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Modified: webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/template/java/MessageReceiverTemplate.xsl URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/template/java/MessageReceiverTemplate.xsl?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/template/java/MessageReceiverTemplate.xsl (original) +++ webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/template/java/MessageReceiverTemplate.xsl Fri Jul 1 04:05:49 2005 @@ -16,8 +16,8 @@ public class extends { - public void invokeBusinessLogic(org.apache.axis.context.MessageContext msgContext, org.apache.axis.context.MessageContext newMsgContext) - throws org.apache.axis.engine.AxisFault{ + public void invokeBusinessLogic(org.apache.axis2.context.MessageContext msgContext, org.apache.axis2.context.MessageContext newMsgContext) + throws org.apache.axis2.engine.AxisFault{ try { @@ -26,11 +26,11 @@ skel = ()obj; //Out Envelop - org.apache.axis.soap.SOAPEnvelope envelope = null; + org.apache.axis2.soap.SOAPEnvelope envelope = null; //Find the operation that has been set by the Dispatch phase. - org.apache.axis.description.OperationDescription op = msgContext.getOperationContext().getAxisOperation(); + org.apache.axis2.description.OperationDescription op = msgContext.getOperationContext().getAxisOperation(); if (op == null) { - throw new org.apache.axis.engine.AxisFault("Operation is not located, if this is doclit style the SOAP-ACTION should specified via the SOAP Action to use the RawXMLProvider"); + throw new org.apache.axis2.engine.AxisFault("Operation is not located, if this is doclit style the SOAP-ACTION should specified via the SOAP Action to use the RawXMLProvider"); } String methodName; @@ -64,18 +64,18 @@ - org.apache.axis.om.OMElement firstChild = (org.apache.axis.om.OMElement)msgContext.getEnvelope().getBody().getFirstChild(); + org.apache.axis2.om.OMElement firstChild = (org.apache.axis2.om.OMElement)msgContext.getEnvelope().getBody().getFirstChild(); if(null == firstChild) - throw new org.apache.axis.engine.AxisFault("Wrapper Element Not Found for the operation of RPC style"); + throw new org.apache.axis2.engine.AxisFault("Wrapper Element Not Found for the operation of RPC style"); java.util.Iterator children = firstChild.getChildren(); org.apache.xmlbeans.XmlObject[] params = new org.apache.xmlbeans.XmlObject[]; int count = 0; while(children.hasNext() && count < ){ - params[count] = org.soapinterop.databinding.echoStringDatabindingSupporter.fromOM((org.apache.axis.om.OMElement)children.next(), .class); + params[count] = org.soapinterop.databinding.echoStringDatabindingSupporter.fromOM((org.apache.axis2.om.OMElement)children.next(), .class); count++; } if(count!= ) - throw new org.apache.axis.engine.AxisFault("Parts mismatch in the message"); + throw new org.apache.axis2.engine.AxisFault("Parts mismatch in the message"); @@ -89,8 +89,8 @@ ); //Create a default envelop envelope = getSOAPFactory().getDefaultEnvelope(); - org.apache.axis.om.OMNamespace ns = getSOAPFactory().createOMNamespace("", "Responce"); - org.apache.axis.om.OMElement responseMethodName = getSOAPFactory().createOMElement(methodName + "Response", ns); + org.apache.axis2.om.OMNamespace ns = getSOAPFactory().createOMNamespace("", "Responce"); + org.apache.axis2.om.OMElement responseMethodName = getSOAPFactory().createOMElement(methodName + "Response", ns); //Create a Omelement of the result if a result exist responseMethodName.setFirstChild(..toOM()); @@ -106,7 +106,7 @@ //doc style - = skel.(()..fromOM((org.apache.axis.om.OMElement)msgContext.getEnvelope().getBody().getFirstChild().detach(), .class)); + = skel.(()..fromOM((org.apache.axis2.om.OMElement)msgContext.getEnvelope().getBody().getFirstChild().detach(), .class)); //Create a default envelop envelope = getSOAPFactory().getDefaultEnvelope(); @@ -134,7 +134,7 @@ } catch (Exception e) { - throw org.apache.axis.engine.AxisFault.makeFault(e); + throw org.apache.axis2.engine.AxisFault.makeFault(e); } } Modified: webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/template/java/TestClassTemplate.xsl URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/template/java/TestClassTemplate.xsl?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/template/java/TestClassTemplate.xsl (original) +++ webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/template/java/TestClassTemplate.xsl Fri Jul 1 04:05:49 2005 @@ -16,16 +16,16 @@ import javax.xml.namespace.QName; - import org.apache.axis.context.ConfigurationContext; - import org.apache.axis.deployment.DeploymentEngine; - import org.apache.axis.description.ServiceDescription; - import org.apache.axis.engine.AxisConfiguration; - import org.apache.axis.wsdl.codegen.Constants; - import org.apache.axis.om.OMAbstractFactory; - import org.apache.axis.om.OMElement; - import org.apache.axis.om.OMFactory; - import org.apache.axis.om.impl.llom.OMTextImpl; - import org.apache.axis.transport.http.SimpleHTTPServer; + import org.apache.axis2.context.ConfigurationContext; + import org.apache.axis2.deployment.DeploymentEngine; + import org.apache.axis2.description.ServiceDescription; + import org.apache.axis2.engine.AxisConfiguration; + import org.apache.axis2.wsdl.codegen.Constants; + import org.apache.axis2.om.OMAbstractFactory; + import org.apache.axis2.om.OMElement; + import org.apache.axis2.om.OMFactory; + import org.apache.axis2.om.impl.llom.OMTextImpl; + import org.apache.axis2.transport.http.SimpleHTTPServer; /* @@ -110,7 +110,7 @@ private class extends .{ public (){ super(null);} - public void receiveResult(org.apache.axis.clientapi.AsyncResult result) { + public void receiveResult(org.apache.axis2.clientapi.AsyncResult result) { assertNotNull(result.getResponseEnvelope().getBody().getFirstChild()); } Modified: webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/template/java/TestSkeletonImplTemplate.xsl URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/template/java/TestSkeletonImplTemplate.xsl?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/template/java/TestSkeletonImplTemplate.xsl (original) +++ webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/template/java/TestSkeletonImplTemplate.xsl Fri Jul 1 04:05:49 2005 @@ -6,10 +6,10 @@ import javax.xml.namespace.QName; - import org.apache.axis.om.OMAbstractFactory; - import org.apache.axis.om.OMElement; - import org.apache.axis.om.OMFactory; - import org.apache.axis.om.impl.llom.OMTextImpl; + import org.apache.axis2.om.OMAbstractFactory; + import org.apache.axis2.om.OMElement; + import org.apache.axis2.om.OMFactory; + import org.apache.axis2.om.impl.llom.OMTextImpl; /** Modified: webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/template/java/XMLBeansSupporterTemplate.xsl URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/template/java/XMLBeansSupporterTemplate.xsl?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/template/java/XMLBeansSupporterTemplate.xsl (original) +++ webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/template/java/XMLBeansSupporterTemplate.xsl Fri Jul 1 04:05:49 2005 @@ -10,7 +10,7 @@ public class { - public static org.apache.xmlbeans.XmlObject fromOM(org.apache.axis.om.OMElement param, + public static org.apache.xmlbeans.XmlObject fromOM(org.apache.axis2.om.OMElement param, java.lang.Class type){ try{ @@ -52,10 +52,10 @@ - public static org.apache.axis.om.OMElement toOM( param){ - org.apache.axis.om.impl.llom.builder.StAXOMBuilder builder = org.apache.axis.om.impl.llom.factory.OMXMLBuilderFactory.createStAXOMBuilder - (org.apache.axis.om.OMAbstractFactory.getOMFactory(),new org.apache.axis.clientapi.StreamWrapper(param.newXMLStreamReader())) ; - org.apache.axis.om.OMElement documentElement = builder.getDocumentElement(); + public static org.apache.axis2.om.OMElement toOM( param){ + org.apache.axis2.om.impl.llom.builder.StAXOMBuilder builder = org.apache.axis2.om.impl.llom.factory.OMXMLBuilderFactory.createStAXOMBuilder + (org.apache.axis2.om.OMAbstractFactory.getOMFactory(),new org.apache.axis2.clientapi.StreamWrapper(param.newXMLStreamReader())) ; + org.apache.axis2.om.OMElement documentElement = builder.getDocumentElement(); //Building the element is needed to avoid certain stream errors! documentElement.build(); return documentElement; Modified: webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/util/FileWriter.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/util/FileWriter.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/util/FileWriter.java (original) +++ webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/util/FileWriter.java Fri Jul 1 04:05:49 2005 @@ -1,6 +1,6 @@ -package org.apache.axis.wsdl.util; +package org.apache.axis2.wsdl.util; -import org.apache.axis.wsdl.codegen.XSLTConstants; +import org.apache.axis2.wsdl.codegen.XSLTConstants; import java.io.File; import java.io.IOException; Modified: webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/util/URLProcessor.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/util/URLProcessor.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/util/URLProcessor.java (original) +++ webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/util/URLProcessor.java Fri Jul 1 04:05:49 2005 @@ -1,4 +1,4 @@ -package org.apache.axis.wsdl.util; +package org.apache.axis2.wsdl.util; import java.util.regex.Matcher; import java.util.regex.Pattern; Modified: webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/util/XSLTTemplateProcessor.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/util/XSLTTemplateProcessor.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/util/XSLTTemplateProcessor.java (original) +++ webservices/axis/trunk/java/modules/wsdl/src/org/apache/axis2/wsdl/util/XSLTTemplateProcessor.java Fri Jul 1 04:05:49 2005 @@ -1,4 +1,4 @@ -package org.apache.axis.wsdl.util; +package org.apache.axis2.wsdl.util; import javax.xml.transform.*; Modified: webservices/axis/trunk/java/modules/wsdl/src/org/apache/wsdl/WSDLDescription.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/wsdl/src/org/apache/wsdl/WSDLDescription.java?rev=208745&r1=208744&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/wsdl/src/org/apache/wsdl/WSDLDescription.java (original) +++ webservices/axis/trunk/java/modules/wsdl/src/org/apache/wsdl/WSDLDescription.java Fri Jul 1 04:05:49 2005 @@ -15,7 +15,7 @@ */ package org.apache.wsdl; -import org.apache.axis.wsdl.builder.WSDLComponentFactory; +import org.apache.axis2.wsdl.builder.WSDLComponentFactory; import javax.xml.namespace.QName; import java.util.ArrayList; Modified: webservices/axis/trunk/java/modules/wsdl/test/org/apache/wsdl/BindingOperationTest.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/wsdl/test/org/apache/wsdl/BindingOperationTest.java?rev=208745&r1=208744&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/wsdl/test/org/apache/wsdl/BindingOperationTest.java (original) +++ webservices/axis/trunk/java/modules/wsdl/test/org/apache/wsdl/BindingOperationTest.java Fri Jul 1 04:05:49 2005 @@ -16,7 +16,7 @@ package org.apache.wsdl; -import org.apache.axis.wsdl.builder.WOMBuilderFactory; +import org.apache.axis2.wsdl.builder.WOMBuilderFactory; import javax.xml.namespace.QName; import java.io.FileInputStream; Modified: webservices/axis/trunk/java/modules/wsdl/test/org/apache/wsdl/CreateSchemaTest.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/wsdl/test/org/apache/wsdl/CreateSchemaTest.java?rev=208745&r1=208744&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/wsdl/test/org/apache/wsdl/CreateSchemaTest.java (original) +++ webservices/axis/trunk/java/modules/wsdl/test/org/apache/wsdl/CreateSchemaTest.java Fri Jul 1 04:05:49 2005 @@ -16,8 +16,8 @@ package org.apache.wsdl; -import org.apache.axis.wsdl.WSDLVersionWrapper; -import org.apache.axis.wsdl.builder.WOMBuilderFactory; +import org.apache.axis2.wsdl.WSDLVersionWrapper; +import org.apache.axis2.wsdl.builder.WOMBuilderFactory; import org.apache.wsdl.extensions.ExtensionConstants; import org.apache.wsdl.extensions.Schema; import org.w3c.dom.Element; Modified: webservices/axis/trunk/java/modules/wsdl/test/org/apache/wsdl/MessageReuseTest.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/wsdl/test/org/apache/wsdl/MessageReuseTest.java?rev=208745&r1=208744&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/wsdl/test/org/apache/wsdl/MessageReuseTest.java (original) +++ webservices/axis/trunk/java/modules/wsdl/test/org/apache/wsdl/MessageReuseTest.java Fri Jul 1 04:05:49 2005 @@ -16,8 +16,8 @@ package org.apache.wsdl; -import org.apache.axis.wsdl.WSDLVersionWrapper; -import org.apache.axis.wsdl.builder.WOMBuilderFactory; +import org.apache.axis2.wsdl.WSDLVersionWrapper; +import org.apache.axis2.wsdl.builder.WOMBuilderFactory; import org.apache.wsdl.extensions.ExtensionConstants; import org.apache.wsdl.extensions.Schema; import org.w3c.dom.Element; Modified: webservices/axis/trunk/java/modules/wsdl/test/org/apache/wsdl/SOAPActionTest.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/wsdl/test/org/apache/wsdl/SOAPActionTest.java?rev=208745&r1=208744&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/wsdl/test/org/apache/wsdl/SOAPActionTest.java (original) +++ webservices/axis/trunk/java/modules/wsdl/test/org/apache/wsdl/SOAPActionTest.java Fri Jul 1 04:05:49 2005 @@ -16,8 +16,8 @@ package org.apache.wsdl; -import org.apache.axis.wsdl.WSDLVersionWrapper; -import org.apache.axis.wsdl.builder.WOMBuilderFactory; +import org.apache.axis2.wsdl.WSDLVersionWrapper; +import org.apache.axis2.wsdl.builder.WOMBuilderFactory; import org.apache.wsdl.extensions.ExtensionConstants; import org.apache.wsdl.extensions.SOAPOperation; Modified: webservices/axis/trunk/java/modules/wsdl/test/org/apache/wsdl/WOMBuilderTest.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/wsdl/test/org/apache/wsdl/WOMBuilderTest.java?rev=208745&r1=208744&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/wsdl/test/org/apache/wsdl/WOMBuilderTest.java (original) +++ webservices/axis/trunk/java/modules/wsdl/test/org/apache/wsdl/WOMBuilderTest.java Fri Jul 1 04:05:49 2005 @@ -16,8 +16,8 @@ package org.apache.wsdl; -import org.apache.axis.wsdl.WSDLVersionWrapper; -import org.apache.axis.wsdl.builder.WOMBuilderFactory; +import org.apache.axis2.wsdl.WSDLVersionWrapper; +import org.apache.axis2.wsdl.builder.WOMBuilderFactory; import javax.wsdl.Definition; import javax.wsdl.Operation; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/Base64.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/Base64.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/Base64.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/Base64.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/Base64.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/Base64.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/Base64.java Fri Jul 1 04:05:49 2005 @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.attachments; +package org.apache.axis2.attachments; import java.io.IOException; import java.io.OutputStream; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/ByteArrayDataSource.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/ByteArrayDataSource.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/ByteArrayDataSource.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/ByteArrayDataSource.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/ByteArrayDataSource.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/ByteArrayDataSource.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/ByteArrayDataSource.java Fri Jul 1 04:05:49 2005 @@ -14,7 +14,7 @@ * limitations under the License. *

*/ -package org.apache.axis.attachments; +package org.apache.axis2.attachments; import javax.activation.DataSource; import java.io.ByteArrayInputStream; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/IOUtils.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/IOUtils.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/IOUtils.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/IOUtils.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/IOUtils.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/IOUtils.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/IOUtils.java Fri Jul 1 04:05:49 2005 @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.apache.axis.attachments; +package org.apache.axis2.attachments; import java.io.IOException; import java.io.InputStream; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/ImageDataSource.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/ImageDataSource.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/ImageDataSource.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/ImageDataSource.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/ImageDataSource.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/ImageDataSource.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/ImageDataSource.java Fri Jul 1 04:05:49 2005 @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.attachments; +package org.apache.axis2.attachments; import javax.activation.DataSource; import java.awt.*; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/ImageIO.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/ImageIO.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/ImageIO.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/ImageIO.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/ImageIO.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/ImageIO.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/ImageIO.java Fri Jul 1 04:05:49 2005 @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.apache.axis.attachments; +package org.apache.axis2.attachments; import java.awt.*; import java.io.InputStream; import java.io.OutputStream; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/JDK13IO.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/JDK13IO.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/JDK13IO.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/JDK13IO.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/JDK13IO.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/JDK13IO.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/JDK13IO.java Fri Jul 1 04:05:49 2005 @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.apache.axis.attachments; +package org.apache.axis2.attachments; import sun.awt.image.codec.JPEGImageEncoderImpl; @@ -76,7 +76,7 @@ } else { byte[] bytes = new byte[in.available()]; - org.apache.axis.attachments.IOUtils.readFully(in,bytes); + org.apache.axis2.attachments.IOUtils.readFully(in,bytes); return Toolkit.getDefaultToolkit().createImage(bytes); } } // loadImage Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/MIMEHelper.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/MIMEHelper.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/MIMEHelper.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/MIMEHelper.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/MIMEHelper.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/MIMEHelper.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/MIMEHelper.java Fri Jul 1 04:05:49 2005 @@ -14,9 +14,9 @@ * limitations under the License. *

*/ -package org.apache.axis.attachments; +package org.apache.axis2.attachments; -import org.apache.axis.om.OMException; +import org.apache.axis2.om.OMException; import javax.activation.DataHandler; import javax.mail.MessagingException; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/MimeBodyPartInputStream.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/MimeBodyPartInputStream.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/MimeBodyPartInputStream.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/MimeBodyPartInputStream.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/MimeBodyPartInputStream.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/MimeBodyPartInputStream.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/MimeBodyPartInputStream.java Fri Jul 1 04:05:49 2005 @@ -14,7 +14,7 @@ * limitations under the License. *

*/ -package org.apache.axis.attachments; +package org.apache.axis2.attachments; import java.io.IOException; import java.io.InputStream; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/PartOnFile.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/PartOnFile.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/PartOnFile.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/PartOnFile.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/PartOnFile.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/attachments/PartOnFile.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/attachments/PartOnFile.java Fri Jul 1 04:05:49 2005 @@ -14,9 +14,9 @@ * limitations under the License. *

*/ -package org.apache.axis.attachments; +package org.apache.axis2.attachments; -import org.apache.axis.om.OMException; +import org.apache.axis2.om.OMException; import javax.activation.DataHandler; import javax.mail.MessagingException; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/FactoryFinder.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/FactoryFinder.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/FactoryFinder.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/FactoryFinder.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/FactoryFinder.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/FactoryFinder.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/FactoryFinder.java Fri Jul 1 04:05:49 2005 @@ -13,9 +13,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om; +package org.apache.axis2.om; -import org.apache.axis.soap.SOAPFactory; +import org.apache.axis2.soap.SOAPFactory; /** @@ -23,11 +23,11 @@ */ class FactoryFinder { private static final String DEFAULT_OM_FACTORY_CLASS_NAME = - "org.apache.axis.om.impl.llom.factory.OMLinkedListImplFactory"; + "org.apache.axis2.om.impl.llom.factory.OMLinkedListImplFactory"; private static final String DEFAULT_SOAP11_FACTORY_CLASS_NAME = - "org.apache.axis.soap.impl.llom.soap11.SOAP11Factory"; + "org.apache.axis2.soap.impl.llom.soap11.SOAP11Factory"; private static final String DEFAULT_SOAP12_FACTORY_CLASS_NAME = - "org.apache.axis.soap.impl.llom.soap12.SOAP12Factory"; + "org.apache.axis2.soap.impl.llom.soap12.SOAP12Factory"; private static final String OM_FACTORY_NAME_PROPERTY = "om.factory"; private static final String SOAP11_FACTORY_NAME_PROPERTY = "soap11.factory"; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/MIMEOutputUtils.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/MIMEOutputUtils.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/MIMEOutputUtils.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/MIMEOutputUtils.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/MIMEOutputUtils.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/MIMEOutputUtils.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/MIMEOutputUtils.java Fri Jul 1 04:05:49 2005 @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om; +package org.apache.axis2.om; import javax.activation.DataHandler; import javax.mail.MessagingException; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMAbstractFactory.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMAbstractFactory.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMAbstractFactory.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMAbstractFactory.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMAbstractFactory.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMAbstractFactory.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMAbstractFactory.java Fri Jul 1 04:05:49 2005 @@ -1,7 +1,7 @@ -package org.apache.axis.om; +package org.apache.axis2.om; -import org.apache.axis.soap.SOAPFactory; -import org.apache.axis.soap.impl.llom.factory.SOAPLinkedListImplFactory; +import org.apache.axis2.soap.SOAPFactory; +import org.apache.axis2.soap.impl.llom.factory.SOAPLinkedListImplFactory; /** * Copyright 2001-2004 The Apache Software Foundation. Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMAttribute.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMAttribute.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMAttribute.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMAttribute.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMAttribute.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMAttribute.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMAttribute.java Fri Jul 1 04:05:49 2005 @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om; +package org.apache.axis2.om; import javax.xml.namespace.QName; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMConstants.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMConstants.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMConstants.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMConstants.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMConstants.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMConstants.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMConstants.java Fri Jul 1 04:05:49 2005 @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om; +package org.apache.axis2.om; /** * Interface OMConstants Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMContainer.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMContainer.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMContainer.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMContainer.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMContainer.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMContainer.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMContainer.java Fri Jul 1 04:05:49 2005 @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om; +package org.apache.axis2.om; import javax.xml.namespace.QName; import java.util.Iterator; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMElement.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMElement.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMElement.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMElement.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMElement.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMElement.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMElement.java Fri Jul 1 04:05:49 2005 @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om; +package org.apache.axis2.om; import javax.xml.namespace.QName; import javax.xml.stream.XMLStreamReader; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMException.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMException.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMException.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMException.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMException.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMException.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMException.java Fri Jul 1 04:05:49 2005 @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om; +package org.apache.axis2.om; /** * Class OMException Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMFactory.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMFactory.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMFactory.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMFactory.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMFactory.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMFactory.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMFactory.java Fri Jul 1 04:05:49 2005 @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om; +package org.apache.axis2.om; import javax.activation.DataHandler; import javax.xml.namespace.QName; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMFactoryException.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMFactoryException.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMFactoryException.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMFactoryException.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMFactoryException.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMFactoryException.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMFactoryException.java Fri Jul 1 04:05:49 2005 @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om; +package org.apache.axis2.om; /** * Class OMFactoryException Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMNamespace.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMNamespace.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMNamespace.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMNamespace.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMNamespace.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMNamespace.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMNamespace.java Fri Jul 1 04:05:49 2005 @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om; +package org.apache.axis2.om; /** * Interface OMNamespace Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMNode.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMNode.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMNode.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMNode.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMNode.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMNode.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMNode.java Fri Jul 1 04:05:49 2005 @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om; +package org.apache.axis2.om; import javax.xml.stream.XMLStreamException; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMOutput.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMOutput.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMOutput.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMOutput.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMOutput.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMOutput.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMOutput.java Fri Jul 1 04:05:49 2005 @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om; +package org.apache.axis2.om; import javax.xml.stream.FactoryConfigurationError; import javax.xml.stream.XMLOutputFactory; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMSerializer.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMSerializer.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMSerializer.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMSerializer.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMSerializer.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMSerializer.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMSerializer.java Fri Jul 1 04:05:49 2005 @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om; +package org.apache.axis2.om; import javax.xml.stream.XMLStreamException; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMText.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMText.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMText.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMText.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMText.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMText.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMText.java Fri Jul 1 04:05:49 2005 @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om; +package org.apache.axis2.om; import javax.activation.DataHandler; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMXMLParserWrapper.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMXMLParserWrapper.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMXMLParserWrapper.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMXMLParserWrapper.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMXMLParserWrapper.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/OMXMLParserWrapper.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/OMXMLParserWrapper.java Fri Jul 1 04:05:49 2005 @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om; +package org.apache.axis2.om; /** * Interface OMXMLParserWrapper @@ -23,7 +23,7 @@ * Proceed the parser one step and return the event value * * @return - * @throws org.apache.axis.om.OMException + * @throws org.apache.axis2.om.OMException * @throws OMException */ int next() throws OMException; @@ -33,14 +33,14 @@ * This should remove the given element and its decendants. * * @param el - * @throws org.apache.axis.om.OMException + * @throws org.apache.axis2.om.OMException * @throws OMException */ void discard(OMElement el) throws OMException; /** * @param b - * @throws org.apache.axis.om.OMException + * @throws org.apache.axis2.om.OMException * @throws OMException */ void setCache(boolean b) throws OMException; Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMAttributeImpl.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMAttributeImpl.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMAttributeImpl.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMAttributeImpl.java Fri Jul 1 04:05:49 2005 @@ -13,10 +13,10 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om.impl.llom; +package org.apache.axis2.om.impl.llom; -import org.apache.axis.om.OMAttribute; -import org.apache.axis.om.OMNamespace; +import org.apache.axis2.om.OMAttribute; +import org.apache.axis2.om.OMNamespace; import javax.xml.namespace.QName; import java.util.regex.Matcher; Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMDocument.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMDocument.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMDocument.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMDocument.java Fri Jul 1 04:05:49 2005 @@ -13,11 +13,11 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om.impl.llom; +package org.apache.axis2.om.impl.llom; -import org.apache.axis.om.*; -import org.apache.axis.om.impl.llom.traverse.OMChildrenIterator; -import org.apache.axis.om.impl.llom.traverse.OMChildrenQNameIterator; +import org.apache.axis2.om.*; +import org.apache.axis2.om.impl.llom.traverse.OMChildrenIterator; +import org.apache.axis2.om.impl.llom.traverse.OMChildrenQNameIterator; import javax.xml.namespace.QName; import java.util.Iterator; @@ -161,7 +161,7 @@ * * @param elementQName * @return - * @throws org.apache.axis.om.OMException + * @throws org.apache.axis2.om.OMException * @throws OMException */ public Iterator getChildrenWithName(QName elementQName) throws OMException { Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMElementImpl.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMElementImpl.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMElementImpl.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMElementImpl.java Fri Jul 1 04:05:49 2005 @@ -13,13 +13,13 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om.impl.llom; +package org.apache.axis2.om.impl.llom; -import org.apache.axis.om.*; -import org.apache.axis.om.impl.llom.serialize.StreamWriterToContentHandlerConverter; -import org.apache.axis.om.impl.llom.traverse.OMChildrenIterator; -import org.apache.axis.om.impl.llom.traverse.OMChildrenQNameIterator; -import org.apache.axis.om.impl.llom.util.EmptyIterator; +import org.apache.axis2.om.*; +import org.apache.axis2.om.impl.llom.serialize.StreamWriterToContentHandlerConverter; +import org.apache.axis2.om.impl.llom.traverse.OMChildrenIterator; +import org.apache.axis2.om.impl.llom.traverse.OMChildrenQNameIterator; +import org.apache.axis2.om.impl.llom.util.EmptyIterator; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; @@ -209,7 +209,7 @@ * * @param elementQName * @return - * @throws org.apache.axis.om.OMException + * @throws org.apache.axis2.om.OMException * @throws OMException */ public Iterator getChildrenWithName(QName elementQName) throws OMException { @@ -260,7 +260,7 @@ * This will give the next sibling. This can be an OMAttribute for OMAttribute or OMText or OMELement for others. * * @return - * @throws org.apache.axis.om.OMException + * @throws org.apache.axis2.om.OMException * @throws OMException */ public OMNode getNextSibling() throws OMException { @@ -313,7 +313,7 @@ * @param uri * @param prefix * @return - * @throws org.apache.axis.om.OMException + * @throws org.apache.axis2.om.OMException * @throws OMException */ public OMNamespace findNamespace(String uri, String prefix) @@ -388,7 +388,7 @@ * * @param qname * @return - * @throws org.apache.axis.om.OMException + * @throws org.apache.axis2.om.OMException * @throws OMException */ public OMAttribute getFirstAttribute(QName qname) throws OMException { @@ -513,7 +513,7 @@ /** * This will remove this information item and its children, from the model completely * - * @throws org.apache.axis.om.OMException + * @throws org.apache.axis2.om.OMException * @throws OMException */ public OMNode detach() throws OMException { @@ -538,7 +538,7 @@ * This is to get the type of node, as this is the super class of all the nodes * * @return - * @throws org.apache.axis.om.OMException + * @throws org.apache.axis2.om.OMException * @throws OMException */ public int getType() throws OMException { @@ -547,7 +547,7 @@ /** * @return - * @see org.apache.axis.om.OMElement#getXMLStreamReader() + * @see org.apache.axis2.om.OMElement#getXMLStreamReader() */ public XMLStreamReader getXMLStreamReader() { return getXMLStreamReader(true); @@ -555,7 +555,7 @@ /** * @return - * @see org.apache.axis.om.OMElement#getXMLStreamReaderWithoutCaching() + * @see org.apache.axis2.om.OMElement#getXMLStreamReaderWithoutCaching() */ public XMLStreamReader getXMLStreamReaderWithoutCaching() { return getXMLStreamReader(false); @@ -719,7 +719,7 @@ } // /* (non-Javadoc) -// * @see org.apache.axis.om.OMElement#getNextSiblingElement() +// * @see org.apache.axis2.om.OMElement#getNextSiblingElement() // */ // public OMElement getNextSiblingElement() throws OMException { // OMNode node = getNextSibling(); Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMNamespaceImpl.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMNamespaceImpl.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMNamespaceImpl.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMNamespaceImpl.java Fri Jul 1 04:05:49 2005 @@ -13,9 +13,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om.impl.llom; +package org.apache.axis2.om.impl.llom; -import org.apache.axis.om.OMNamespace; +import org.apache.axis2.om.OMNamespace; /** * Class OMNamespaceImpl Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMNavigator.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMNavigator.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMNavigator.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMNavigator.java Fri Jul 1 04:05:49 2005 @@ -14,11 +14,11 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package org.apache.axis.om.impl.llom; + package org.apache.axis2.om.impl.llom; -import org.apache.axis.om.OMContainer; -import org.apache.axis.om.OMElement; -import org.apache.axis.om.OMNode; +import org.apache.axis2.om.OMContainer; +import org.apache.axis2.om.OMElement; +import org.apache.axis2.om.OMNode; /** * Refer to the testClass to find out how to use Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMNodeImpl.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMNodeImpl.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMNodeImpl.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMNodeImpl.java Fri Jul 1 04:05:49 2005 @@ -13,12 +13,12 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om.impl.llom; +package org.apache.axis2.om.impl.llom; -import org.apache.axis.om.OMContainer; -import org.apache.axis.om.OMException; -import org.apache.axis.om.OMNode; -import org.apache.axis.om.OMXMLParserWrapper; +import org.apache.axis2.om.OMContainer; +import org.apache.axis2.om.OMException; +import org.apache.axis2.om.OMNode; +import org.apache.axis2.om.OMXMLParserWrapper; /** * Class OMNodeImpl @@ -81,7 +81,7 @@ * Parent is always an Element * * @return - * @throws org.apache.axis.om.OMException + * @throws org.apache.axis2.om.OMException * @throws OMException */ public OMContainer getParent() throws OMException { @@ -112,7 +112,7 @@ * This will give the next sibling. This can be an OMAttribute for OMAttribute or OMText or OMELement for others. * * @return - * @throws org.apache.axis.om.OMException + * @throws org.apache.axis2.om.OMException * @throws OMException */ public OMNode getNextSibling() throws OMException { @@ -155,7 +155,7 @@ /** * This will remove this information item and its children, from the model completely * - * @throws org.apache.axis.om.OMException + * @throws org.apache.axis2.om.OMException * @throws OMException */ public OMNode detach() throws OMException { @@ -179,7 +179,7 @@ * This will insert a sibling just after the current information item. * * @param sibling - * @throws org.apache.axis.om.OMException + * @throws org.apache.axis2.om.OMException * @throws OMException */ public void insertSiblingAfter(OMNode sibling) throws OMException { @@ -205,7 +205,7 @@ * This will insert a sibling just before the current information item * * @param sibling - * @throws org.apache.axis.om.OMException + * @throws org.apache.axis2.om.OMException * @throws OMException */ public void insertSiblingBefore(OMNode sibling) throws OMException { @@ -230,7 +230,7 @@ * This is to get the type of node, as this is the super class of all the nodes * * @return - * @throws org.apache.axis.om.OMException + * @throws org.apache.axis2.om.OMException * @throws OMException */ public int getType() throws OMException { Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMSerializerUtil.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMSerializerUtil.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMSerializerUtil.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMSerializerUtil.java Fri Jul 1 04:05:49 2005 @@ -1,10 +1,10 @@ -package org.apache.axis.om.impl.llom; +package org.apache.axis2.om.impl.llom; -import org.apache.axis.om.OMAttribute; -import org.apache.axis.om.OMNamespace; -import org.apache.axis.om.OMNode; -import org.apache.axis.om.OMOutput; -import org.apache.axis.om.impl.llom.serialize.StreamingOMSerializer; +import org.apache.axis2.om.OMAttribute; +import org.apache.axis2.om.OMNamespace; +import org.apache.axis2.om.OMNode; +import org.apache.axis2.om.OMOutput; +import org.apache.axis2.om.impl.llom.serialize.StreamingOMSerializer; import javax.xml.stream.XMLStreamException; import javax.xml.stream.XMLStreamWriter; Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMStAXWrapper.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMStAXWrapper.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMStAXWrapper.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMStAXWrapper.java Fri Jul 1 04:05:49 2005 @@ -13,10 +13,10 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om.impl.llom; +package org.apache.axis2.om.impl.llom; -import org.apache.axis.om.*; -import org.apache.axis.om.impl.llom.exception.OMStreamingException; +import org.apache.axis2.om.*; +import org.apache.axis2.om.impl.llom.exception.OMStreamingException; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; @@ -755,7 +755,7 @@ * Not implemented yet * * @return - * @throws org.apache.axis.om.impl.llom.exception.OMStreamingException + * @throws org.apache.axis2.om.impl.llom.exception.OMStreamingException * * @throws XMLStreamException */ Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMTextImpl.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMTextImpl.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMTextImpl.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/OMTextImpl.java Fri Jul 1 04:05:49 2005 @@ -13,13 +13,13 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om.impl.llom; +package org.apache.axis2.om.impl.llom; -import org.apache.axis.attachments.Base64; -import org.apache.axis.attachments.ByteArrayDataSource; -import org.apache.axis.attachments.IOUtils; -import org.apache.axis.om.*; -import org.apache.axis.om.impl.llom.mtom.MTOMStAXSOAPModelBuilder; +import org.apache.axis2.attachments.Base64; +import org.apache.axis2.attachments.ByteArrayDataSource; +import org.apache.axis2.attachments.IOUtils; +import org.apache.axis2.om.*; +import org.apache.axis2.om.impl.llom.mtom.MTOMStAXSOAPModelBuilder; import javax.activation.DataHandler; import javax.xml.stream.XMLStreamException; @@ -238,7 +238,7 @@ /** * @return - * @throws org.apache.axis.om.OMException + * @throws org.apache.axis2.om.OMException * @throws OMException */ public DataHandler getDataHandler() { Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/builder/SAXOMBuilder.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/builder/SAXOMBuilder.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/builder/SAXOMBuilder.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/builder/SAXOMBuilder.java Fri Jul 1 04:05:49 2005 @@ -14,9 +14,9 @@ * the License. */ -package org.apache.axis.om.impl.llom.builder; +package org.apache.axis2.om.impl.llom.builder; -import org.apache.axis.om.*; +import org.apache.axis2.om.*; import org.xml.sax.Attributes; import org.xml.sax.Locator; import org.xml.sax.SAXException; Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/builder/StAXBuilder.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/builder/StAXBuilder.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/builder/StAXBuilder.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/builder/StAXBuilder.java Fri Jul 1 04:05:49 2005 @@ -13,11 +13,11 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om.impl.llom.builder; +package org.apache.axis2.om.impl.llom.builder; -import org.apache.axis.om.*; -import org.apache.axis.om.impl.llom.OMElementImpl; -import org.apache.axis.om.impl.llom.OMNodeImpl; +import org.apache.axis2.om.*; +import org.apache.axis2.om.impl.llom.OMElementImpl; +import org.apache.axis2.om.impl.llom.OMNodeImpl; import javax.xml.stream.XMLStreamConstants; import javax.xml.stream.XMLStreamReader; Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/builder/StAXOMBuilder.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/builder/StAXOMBuilder.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/builder/StAXOMBuilder.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/builder/StAXOMBuilder.java Fri Jul 1 04:05:49 2005 @@ -13,11 +13,11 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om.impl.llom.builder; +package org.apache.axis2.om.impl.llom.builder; -import org.apache.axis.om.*; -import org.apache.axis.om.impl.llom.OMDocument; -import org.apache.axis.soap.SOAPEnvelope; +import org.apache.axis2.om.*; +import org.apache.axis2.om.impl.llom.OMDocument; +import org.apache.axis2.soap.SOAPEnvelope; import javax.xml.stream.XMLStreamConstants; import javax.xml.stream.XMLStreamReader; Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/exception/OMBuilderException.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/exception/OMBuilderException.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/exception/OMBuilderException.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/exception/OMBuilderException.java Fri Jul 1 04:05:49 2005 @@ -13,9 +13,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om.impl.llom.exception; +package org.apache.axis2.om.impl.llom.exception; -import org.apache.axis.om.OMException; +import org.apache.axis2.om.OMException; /** * Class OMBuilderException Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/exception/OMStreamingException.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/exception/OMStreamingException.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/exception/OMStreamingException.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/exception/OMStreamingException.java Fri Jul 1 04:05:49 2005 @@ -13,9 +13,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om.impl.llom.exception; +package org.apache.axis2.om.impl.llom.exception; -import org.apache.axis.om.OMException; +import org.apache.axis2.om.OMException; /** * Class OMStreamingException Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/exception/XMLComparisonException.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/exception/XMLComparisonException.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/exception/XMLComparisonException.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/exception/XMLComparisonException.java Fri Jul 1 04:05:49 2005 @@ -1,4 +1,4 @@ -package org.apache.axis.om.impl.llom.exception; +package org.apache.axis2.om.impl.llom.exception; /** * Copyright 2001-2004 The Apache Software Foundation. Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/factory/OMLinkedListImplFactory.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/factory/OMLinkedListImplFactory.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/factory/OMLinkedListImplFactory.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/factory/OMLinkedListImplFactory.java Fri Jul 1 04:05:49 2005 @@ -13,13 +13,13 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om.impl.llom.factory; +package org.apache.axis2.om.impl.llom.factory; -import org.apache.axis.om.*; -import org.apache.axis.om.impl.llom.OMAttributeImpl; -import org.apache.axis.om.impl.llom.OMElementImpl; -import org.apache.axis.om.impl.llom.OMNamespaceImpl; -import org.apache.axis.om.impl.llom.OMTextImpl; +import org.apache.axis2.om.*; +import org.apache.axis2.om.impl.llom.OMAttributeImpl; +import org.apache.axis2.om.impl.llom.OMElementImpl; +import org.apache.axis2.om.impl.llom.OMNamespaceImpl; +import org.apache.axis2.om.impl.llom.OMTextImpl; import javax.activation.DataHandler; import javax.xml.namespace.QName; Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/factory/OMXMLBuilderFactory.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/factory/OMXMLBuilderFactory.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/factory/OMXMLBuilderFactory.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/factory/OMXMLBuilderFactory.java Fri Jul 1 04:05:49 2005 @@ -13,12 +13,12 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om.impl.llom.factory; +package org.apache.axis2.om.impl.llom.factory; -import org.apache.axis.om.OMFactory; -import org.apache.axis.om.impl.llom.builder.StAXOMBuilder; -import org.apache.axis.soap.SOAPFactory; -import org.apache.axis.soap.impl.llom.builder.StAXSOAPModelBuilder; +import org.apache.axis2.om.OMFactory; +import org.apache.axis2.om.impl.llom.builder.StAXOMBuilder; +import org.apache.axis2.soap.SOAPFactory; +import org.apache.axis2.soap.impl.llom.builder.StAXSOAPModelBuilder; import javax.xml.stream.XMLStreamReader; Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/mtom/MTOMStAXSOAPModelBuilder.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/mtom/MTOMStAXSOAPModelBuilder.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/mtom/MTOMStAXSOAPModelBuilder.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/mtom/MTOMStAXSOAPModelBuilder.java Fri Jul 1 04:05:49 2005 @@ -14,13 +14,13 @@ * limitations under the License. *

*/ -package org.apache.axis.om.impl.llom.mtom; +package org.apache.axis2.om.impl.llom.mtom; -import org.apache.axis.attachments.MIMEHelper; -import org.apache.axis.om.*; -import org.apache.axis.om.impl.llom.OMTextImpl; -import org.apache.axis.soap.SOAPFactory; -import org.apache.axis.soap.impl.llom.builder.StAXSOAPModelBuilder; +import org.apache.axis2.attachments.MIMEHelper; +import org.apache.axis2.om.*; +import org.apache.axis2.om.impl.llom.OMTextImpl; +import org.apache.axis2.soap.SOAPFactory; +import org.apache.axis2.soap.impl.llom.builder.StAXSOAPModelBuilder; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/serialize/StreamWriterToContentHandlerConverter.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/serialize/StreamWriterToContentHandlerConverter.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/serialize/StreamWriterToContentHandlerConverter.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/serialize/StreamWriterToContentHandlerConverter.java Fri Jul 1 04:05:49 2005 @@ -13,9 +13,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om.impl.llom.serialize; +package org.apache.axis2.om.impl.llom.serialize; -import org.apache.axis.om.OMOutput; +import org.apache.axis2.om.OMOutput; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.xml.sax.Attributes; Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/serialize/StreamingOMSerializer.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/serialize/StreamingOMSerializer.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/serialize/StreamingOMSerializer.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/serialize/StreamingOMSerializer.java Fri Jul 1 04:05:49 2005 @@ -13,10 +13,10 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om.impl.llom.serialize; +package org.apache.axis2.om.impl.llom.serialize; -import org.apache.axis.om.OMOutput; -import org.apache.axis.om.OMSerializer; +import org.apache.axis2.om.OMOutput; +import org.apache.axis2.om.OMSerializer; import javax.xml.stream.XMLStreamConstants; import javax.xml.stream.XMLStreamException; Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/traverse/OMChildrenIterator.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/traverse/OMChildrenIterator.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/traverse/OMChildrenIterator.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/traverse/OMChildrenIterator.java Fri Jul 1 04:05:49 2005 @@ -13,10 +13,10 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om.impl.llom.traverse; +package org.apache.axis2.om.impl.llom.traverse; -import org.apache.axis.om.OMException; -import org.apache.axis.om.OMNode; +import org.apache.axis2.om.OMException; +import org.apache.axis2.om.OMNode; import java.util.Iterator; Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/traverse/OMChildrenQNameIterator.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/traverse/OMChildrenQNameIterator.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/traverse/OMChildrenQNameIterator.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/traverse/OMChildrenQNameIterator.java Fri Jul 1 04:05:49 2005 @@ -13,10 +13,10 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om.impl.llom.traverse; +package org.apache.axis2.om.impl.llom.traverse; -import org.apache.axis.om.OMNode; -import org.apache.axis.om.impl.llom.OMElementImpl; +import org.apache.axis2.om.OMNode; +import org.apache.axis2.om.impl.llom.OMElementImpl; import javax.xml.namespace.QName; Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/traverse/OMChildrenWithSpecificAttributeIterator.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/traverse/OMChildrenWithSpecificAttributeIterator.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/traverse/OMChildrenWithSpecificAttributeIterator.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/traverse/OMChildrenWithSpecificAttributeIterator.java Fri Jul 1 04:05:49 2005 @@ -13,11 +13,11 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.om.impl.llom.traverse; +package org.apache.axis2.om.impl.llom.traverse; -import org.apache.axis.om.OMAttribute; -import org.apache.axis.om.OMElement; -import org.apache.axis.om.OMNode; +import org.apache.axis2.om.OMAttribute; +import org.apache.axis2.om.OMElement; +import org.apache.axis2.om.OMNode; import javax.xml.namespace.QName; Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/util/EmptyIterator.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/util/EmptyIterator.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/util/EmptyIterator.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/util/EmptyIterator.java Fri Jul 1 04:05:49 2005 @@ -1,4 +1,4 @@ -package org.apache.axis.om.impl.llom.util; +package org.apache.axis2.om.impl.llom.util; import java.util.Iterator; Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/util/XMLComparator.java URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/util/XMLComparator.java?rev=208745&r1=208741&r2=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/util/XMLComparator.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/om/impl/llom/util/XMLComparator.java Fri Jul 1 04:05:49 2005 @@ -1,10 +1,10 @@ -package org.apache.axis.om.impl.llom.util; +package org.apache.axis2.om.impl.llom.util; -import org.apache.axis.om.OMAttribute; -import org.apache.axis.om.OMElement; -import org.apache.axis.om.OMNamespace; -import org.apache.axis.om.OMNode; -import org.apache.axis.om.impl.llom.exception.XMLComparisonException; +import org.apache.axis2.om.OMAttribute; +import org.apache.axis2.om.OMElement; +import org.apache.axis2.om.OMNamespace; +import org.apache.axis2.om.OMNode; +import org.apache.axis2.om.impl.llom.exception.XMLComparisonException; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/soap/SOAPBody.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/soap/SOAPBody.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/soap/SOAPBody.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/soap/SOAPBody.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/soap/SOAPBody.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/soap/SOAPBody.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/soap/SOAPBody.java Fri Jul 1 04:05:49 2005 @@ -13,10 +13,10 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.soap; +package org.apache.axis2.soap; -import org.apache.axis.om.OMElement; -import org.apache.axis.om.OMException; +import org.apache.axis2.om.OMElement; +import org.apache.axis2.om.OMException; /** * An object that represents the contents of the SOAP body @@ -35,8 +35,8 @@ * * @param e * @return the new SOAPFault object - * @throws org.apache.axis.om.OMException if there is a SOAP error - * @throws org.apache.axis.om.OMException + * @throws org.apache.axis2.om.OMException if there is a SOAP error + * @throws org.apache.axis2.om.OMException */ public abstract SOAPFault addFault(Exception e) throws OMException; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/soap/SOAPEnvelope.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/soap/SOAPEnvelope.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/soap/SOAPEnvelope.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/soap/SOAPEnvelope.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/soap/SOAPEnvelope.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/soap/SOAPEnvelope.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/soap/SOAPEnvelope.java Fri Jul 1 04:05:49 2005 @@ -13,10 +13,10 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.soap; +package org.apache.axis2.soap; -import org.apache.axis.om.OMElement; -import org.apache.axis.om.OMException; +import org.apache.axis2.om.OMElement; +import org.apache.axis2.om.OMException; /** * Interface SOAPEnvelope @@ -31,7 +31,7 @@ * * @return the SOAPHeader object or * null if there is none - * @throws org.apache.axis.om.OMException if there is a problem + * @throws org.apache.axis2.om.OMException if there is a problem * obtaining the SOAPHeader object */ public abstract SOAPHeader getHeader() throws OMException; Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/soap/SOAPFactory.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/soap/SOAPFactory.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/soap/SOAPFactory.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/soap/SOAPFactory.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/soap/SOAPFactory.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/soap/SOAPFactory.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/soap/SOAPFactory.java Fri Jul 1 04:05:49 2005 @@ -1,9 +1,9 @@ -package org.apache.axis.soap; +package org.apache.axis2.soap; -import org.apache.axis.om.OMFactory; -import org.apache.axis.om.OMNamespace; -import org.apache.axis.om.OMXMLParserWrapper; -import org.apache.axis.soap.impl.llom.SOAPProcessingException; +import org.apache.axis2.om.OMFactory; +import org.apache.axis2.om.OMNamespace; +import org.apache.axis2.om.OMXMLParserWrapper; +import org.apache.axis2.soap.impl.llom.SOAPProcessingException; /** Copied: webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/soap/SOAPFault.java (from r208741, webservices/axis/trunk/java/modules/xml/src/org/apache/axis/soap/SOAPFault.java) URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/soap/SOAPFault.java?p2=webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/soap/SOAPFault.java&p1=webservices/axis/trunk/java/modules/xml/src/org/apache/axis/soap/SOAPFault.java&r1=208741&r2=208745&rev=208745&view=diff ============================================================================== --- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/soap/SOAPFault.java (original) +++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis2/soap/SOAPFault.java Fri Jul 1 04:05:49 2005 @@ -13,11 +13,11 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.axis.soap; +package org.apache.axis2.soap; -import org.apache.axis.om.OMElement; -import org.apache.axis.om.OMException; -import org.apache.axis.soap.impl.llom.SOAPProcessingException; +import org.apache.axis2.om.OMElement; +import org.apache.axis2.om.OMException; +import org.apache.axis2.soap.impl.llom.SOAPProcessingException; /** @@ -88,7 +88,7 @@ * * * @return - * @throws org.apache.axis.om.OMException + * @throws org.apache.axis2.om.OMException */ public Exception getException() throws OMException; public void setException(Exception e) throws OMException;