Author: marnie
Date: Thu Jan 11 06:06:44 2007
New Revision: 495230
URL: http://svn.apache.org/viewvc?view=rev&rev=495230
Log:
Added empty signatures for recently added MessageStore interface methods, for
build success (empty implementations appropriate for this class)
Modified:
incubator/qpid/trunk/qpid/java/systests/src/test/java/org/apache/qpid/server/store/SkeletonMessageStore.java
Modified:
incubator/qpid/trunk/qpid/java/systests/src/test/java/org/apache/qpid/server/store/SkeletonMessageStore.java
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/systests/src/test/java/org/apache/qpid/server/store/SkeletonMessageStore.java?view=diff&rev=495230&r1=495229&r2=495230
==============================================================================
---
incubator/qpid/trunk/qpid/java/systests/src/test/java/org/apache/qpid/server/store/SkeletonMessageStore.java
(original)
+++
incubator/qpid/trunk/qpid/java/systests/src/test/java/org/apache/qpid/server/store/SkeletonMessageStore.java
Thu Jan 11 06:06:44 2007
@@ -23,6 +23,7 @@
import org.apache.commons.configuration.Configuration;
import org.apache.qpid.AMQException;
import org.apache.qpid.framing.ContentBody;
+import org.apache.qpid.framing.AMQShortString;
import org.apache.qpid.server.queue.AMQQueue;
import org.apache.qpid.server.queue.MessageMetaData;
import org.apache.qpid.server.queue.QueueRegistry;
@@ -115,5 +116,20 @@
public ContentBody getContentBodyChunk(long messageId, int index) throws
AMQException
{
return null;
+ }
+
+ public void removeQueue(AMQShortString name) throws AMQException
+ {
+
+ }
+
+ public void enqueueMessage(StoreContext context, AMQShortString name, long
messageId) throws AMQException
+ {
+
+ }
+
+ public void dequeueMessage(StoreContext context, AMQShortString name, long
messageId) throws AMQException
+ {
+
}
}