Package org.jboss.cache.commands

Source Code of org.jboss.cache.commands.TestContextBase

package org.jboss.cache.commands;

import org.jboss.cache.DataContainer;
import org.jboss.cache.InvocationContext;
import org.jboss.cache.invocation.LegacyInvocationContext;
import org.jboss.cache.invocation.MVCCInvocationContext;

public class TestContextBase
{
   protected InvocationContext createMVCCInvocationContext()
   {
      return new MVCCInvocationContext();
   }

   protected InvocationContext createLegacyInvocationContext(DataContainer dc)
   {
      return new LegacyInvocationContext(dc);
   }
}
TOP

Related Classes of org.jboss.cache.commands.TestContextBase

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.