Author: chamikara
Date: Thu Dec 1 20:20:03 2005
New Revision: 351577
URL: http://svn.apache.org/viewcvs?rev=351577&view=rev
Log:
More changes due to refactoring of Axis2.
Modified:
webservices/sandesha/trunk/test/src/org/apache/sandesha2/SandeshaTestCase.java
webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/CreateSeqBeanMgrTest.java
webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/NextMsgBeanMgrTest.java
webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/RetransmitterBeanMgrTest.java
webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/SequencePropertyBeanMgrTest.java
webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/StorageMapBeanMgrTest.java
Modified:
webservices/sandesha/trunk/test/src/org/apache/sandesha2/SandeshaTestCase.java
URL:
http://svn.apache.org/viewcvs/webservices/sandesha/trunk/test/src/org/apache/sandesha2/SandeshaTestCase.java?rev=351577&r1=351576&r2=351577&view=diff
==============================================================================
---
webservices/sandesha/trunk/test/src/org/apache/sandesha2/SandeshaTestCase.java
(original)
+++
webservices/sandesha/trunk/test/src/org/apache/sandesha2/SandeshaTestCase.java
Thu Dec 1 20:20:03 2005
@@ -4,7 +4,6 @@
import org.apache.axis2.context.MessageContext;
import org.apache.axis2.context.ConfigurationContext;
import org.apache.axis2.engine.AxisConfiguration;
-import org.apache.axis2.engine.AxisConfigurationImpl;
import org.apache.axis2.soap.SOAPEnvelope;
import org.apache.axis2.om.OMAbstractFactory;
import org.apache.axis2.om.OMXMLParserWrapper;
@@ -76,7 +75,7 @@
private MessageContext getMessageContext() throws Exception{
- AxisConfiguration axisConfig = new AxisConfigurationImpl();
+ AxisConfiguration axisConfig = new AxisConfiguration ();
ConfigurationContext configCtx = new ConfigurationContext(axisConfig);
MessageContext msgCtx = new MessageContext(configCtx);
return msgCtx;
Modified:
webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/CreateSeqBeanMgrTest.java
URL:
http://svn.apache.org/viewcvs/webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/CreateSeqBeanMgrTest.java?rev=351577&r1=351576&r2=351577&view=diff
==============================================================================
---
webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/CreateSeqBeanMgrTest.java
(original)
+++
webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/CreateSeqBeanMgrTest.java
Thu Dec 1 20:20:03 2005
@@ -5,7 +5,6 @@
import org.apache.sandesha2.util.SandeshaUtil;
import org.apache.sandesha2.SandeshaTestCase;
import org.apache.axis2.engine.AxisConfiguration;
-import org.apache.axis2.engine.AxisConfigurationImpl;
import org.apache.axis2.context.ConfigurationContext;
import java.util.Iterator;
@@ -33,7 +32,7 @@
}
public void setUp() throws Exception {
- AxisConfiguration axisConfig = new AxisConfigurationImpl();
+ AxisConfiguration axisConfig = new AxisConfiguration();
ConfigurationContext configCtx = new ConfigurationContext(axisConfig);
StorageManager storageManager =
SandeshaUtil.getSandeshaStorageManager(configCtx);
Modified:
webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/NextMsgBeanMgrTest.java
URL:
http://svn.apache.org/viewcvs/webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/NextMsgBeanMgrTest.java?rev=351577&r1=351576&r2=351577&view=diff
==============================================================================
---
webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/NextMsgBeanMgrTest.java
(original)
+++
webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/NextMsgBeanMgrTest.java
Thu Dec 1 20:20:03 2005
@@ -5,7 +5,6 @@
import org.apache.sandesha2.util.SandeshaUtil;
import org.apache.sandesha2.SandeshaTestCase;
import org.apache.axis2.engine.AxisConfiguration;
-import org.apache.axis2.engine.AxisConfigurationImpl;
import org.apache.axis2.context.ConfigurationContext;
import java.util.Iterator;
@@ -33,7 +32,7 @@
}
public void setUp() throws Exception {
- AxisConfiguration axisConfig = new AxisConfigurationImpl();
+ AxisConfiguration axisConfig = new AxisConfiguration();
ConfigurationContext configCtx = new ConfigurationContext(axisConfig);
StorageManager storageManager =
SandeshaUtil.getSandeshaStorageManager(configCtx);
mgr = storageManager.getNextMsgBeanMgr();
Modified:
webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/RetransmitterBeanMgrTest.java
URL:
http://svn.apache.org/viewcvs/webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/RetransmitterBeanMgrTest.java?rev=351577&r1=351576&r2=351577&view=diff
==============================================================================
---
webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/RetransmitterBeanMgrTest.java
(original)
+++
webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/RetransmitterBeanMgrTest.java
Thu Dec 1 20:20:03 2005
@@ -6,7 +6,6 @@
import org.apache.sandesha2.storage.beans.SenderBean;
import org.apache.sandesha2.util.SandeshaUtil;
import org.apache.axis2.engine.AxisConfiguration;
-import org.apache.axis2.engine.AxisConfigurationImpl;
import org.apache.axis2.context.ConfigurationContext;
import java.util.Iterator;
@@ -34,7 +33,7 @@
}
public void setUp() throws Exception {
- AxisConfiguration axisConfig = new AxisConfigurationImpl();
+ AxisConfiguration axisConfig = new AxisConfiguration();
ConfigurationContext configCtx = new ConfigurationContext(axisConfig);
StorageManager storageManager =
SandeshaUtil.getSandeshaStorageManager(configCtx);
mgr = storageManager.getRetransmitterBeanMgr();
Modified:
webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/SequencePropertyBeanMgrTest.java
URL:
http://svn.apache.org/viewcvs/webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/SequencePropertyBeanMgrTest.java?rev=351577&r1=351576&r2=351577&view=diff
==============================================================================
---
webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/SequencePropertyBeanMgrTest.java
(original)
+++
webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/SequencePropertyBeanMgrTest.java
Thu Dec 1 20:20:03 2005
@@ -5,7 +5,6 @@
import org.apache.sandesha2.util.SandeshaUtil;
import org.apache.sandesha2.SandeshaTestCase;
import org.apache.axis2.engine.AxisConfiguration;
-import org.apache.axis2.engine.AxisConfigurationImpl;
import org.apache.axis2.context.ConfigurationContext;
import java.util.Iterator;
@@ -33,7 +32,7 @@
}
public void setUp() throws Exception {
- AxisConfiguration axisConfig = new AxisConfigurationImpl();
+ AxisConfiguration axisConfig = new AxisConfiguration();
ConfigurationContext configCtx = new ConfigurationContext(axisConfig);
StorageManager storageManager =
SandeshaUtil.getSandeshaStorageManager(configCtx);;
mgr = storageManager.getSequencePropretyBeanMgr();
Modified:
webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/StorageMapBeanMgrTest.java
URL:
http://svn.apache.org/viewcvs/webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/StorageMapBeanMgrTest.java?rev=351577&r1=351576&r2=351577&view=diff
==============================================================================
---
webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/StorageMapBeanMgrTest.java
(original)
+++
webservices/sandesha/trunk/test/src/org/apache/sandesha2/storage/StorageMapBeanMgrTest.java
Thu Dec 1 20:20:03 2005
@@ -5,7 +5,6 @@
import org.apache.sandesha2.util.SandeshaUtil;
import org.apache.sandesha2.SandeshaTestCase;
import org.apache.axis2.engine.AxisConfiguration;
-import org.apache.axis2.engine.AxisConfigurationImpl;
import org.apache.axis2.context.ConfigurationContext;
import java.util.Iterator;
@@ -34,7 +33,7 @@
}
public void setUp() throws Exception {
- AxisConfiguration axisConfig = new AxisConfigurationImpl();
+ AxisConfiguration axisConfig = new AxisConfiguration();
ConfigurationContext configCtx = new ConfigurationContext(axisConfig);
StorageManager storageManager =
SandeshaUtil.getSandeshaStorageManager(configCtx);
mgr = storageManager.getStorageMapBeanMgr();
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]