Author: manik.surtani(a)jboss.com
Date: 2008-04-14 10:52:38 -0400 (Mon, 14 Apr 2008)
New Revision: 5555
Modified:
core/trunk/src/test/java/org/jboss/cache/marshall/BackwardCompatTest.java
Log:
manual test
Modified: core/trunk/src/test/java/org/jboss/cache/marshall/BackwardCompatTest.java
===================================================================
--- core/trunk/src/test/java/org/jboss/cache/marshall/BackwardCompatTest.java 2008-04-14
14:50:48 UTC (rev 5554)
+++ core/trunk/src/test/java/org/jboss/cache/marshall/BackwardCompatTest.java 2008-04-14
14:52:38 UTC (rev 5555)
@@ -1,16 +1,14 @@
package org.jboss.cache.marshall;
-import org.jboss.cache.commands.EvictNodeCommand;
-import org.jboss.cache.commands.GravitateDataCommand;
-import org.jboss.cache.commands.InvalidateCommand;
-import org.jboss.cache.commands.MarshallableCommand;
import org.jboss.cache.commands.cachedata.*;
import org.jboss.cache.commands.channel.BlockChannelCommand;
import org.jboss.cache.commands.channel.UnblockChannelCommand;
+import org.jboss.cache.commands.functional.MarshallableCommand;
import org.jboss.cache.commands.remote.AnnounceBuddyPoolNameCommand;
import org.jboss.cache.commands.remote.AssignToBuddyGroupCommand;
import org.jboss.cache.commands.remote.ClusteredGetCommand;
import org.jboss.cache.commands.remote.DataGravitationCleanupCommand;
+import org.jboss.cache.commands.remote.GravitateDataCommand;
import org.jboss.cache.commands.remote.RemoveFromBuddyGroupCommand;
import org.jboss.cache.commands.remote.ReplicateCommand;
import org.jboss.cache.commands.tx.CommitCommand;
@@ -97,8 +95,8 @@
commands.put(OptimisticPrepareCommand.METHOD_ID, OptimisticPrepareCommand.class);
commands.put(PrepareCommand.METHOD_ID, PrepareCommand.class);
commands.put(RollbackCommand.METHOD_ID, RollbackCommand.class);
- commands.put(EvictNodeCommand.METHOD_ID, EvictNodeCommand.class);
- commands.put(EvictNodeCommand.VERSIONED_METHOD_ID, EvictNodeCommand.class);
+ commands.put(EvictFqnCommand.METHOD_ID, EvictFqnCommand.class);
+ commands.put(EvictFqnCommand.VERSIONED_METHOD_ID, EvictFqnCommand.class);
commands.put(GravitateDataCommand.METHOD_ID, GravitateDataCommand.class);
commands.put(InvalidateCommand.METHOD_ID, InvalidateCommand.class);
}