[jboss-cvs] CacheBenchFwk/cache-products/terracotta-2.3.0/src/org/cachebench/cachewrappers ...

Manik Surtani manik at jboss.org
Thu May 17 04:13:45 EDT 2007


  User: msurtani
  Date: 07/05/17 04:13:45

  Added:       cache-products/terracotta-2.3.0/src/org/cachebench/cachewrappers 
                        TerracottaWrapper.java
  Log:
  fixed stuff
  
  Revision  Changes    Path
  1.1      date: 2007/05/17 08:13:45;  author: msurtani;  state: Exp;CacheBenchFwk/cache-products/terracotta-2.3.0/src/org/cachebench/cachewrappers/TerracottaWrapper.java
  
  Index: TerracottaWrapper.java
  ===================================================================
  package org.cachebench.cachewrappers;
  
  import org.cachebench.CacheWrapper;
  
  import java.util.Properties;
  import java.util.Map;
  
  /**
   * Cache wrapper for Terracotta 2.3.0
   *
   * Using the terracotta-cache package on http://www.terracotta.org/confluence/display/labs/Terracotta+Cache
   *
   * @author <a href="manik at jboss.org">Manik Surtani</a>
   */
  public class TerracottaWrapper implements CacheWrapper
  {
     // Since terracotta 
     private Map cache;
     public void init(Properties parameters) throws Exception
     {
        //To change body of implemented methods use File | Settings | File Templates.
     }
  
     public void setUp() throws Exception
     {
     }
  
     public void tearDown() throws Exception
     {
     }
  
     public void put(Object key, Object value) throws Exception
     {
        //To change body of implemented methods use File | Settings | File Templates.
     }
  
     public Object get(Object key) throws Exception
     {
        return null;  //To change body of implemented methods use File | Settings | File Templates.
     }
  
     public void empty() throws Exception
     {
        //To change body of implemented methods use File | Settings | File Templates.
     }
  
     public int getNumMembers()
     {
        return 0;  //To change body of implemented methods use File | Settings | File Templates.
     }
  
     public String getInfo()
     {
        return null;  //To change body of implemented methods use File | Settings | File Templates.
     }
  }
  
  
  



More information about the jboss-cvs-commits mailing list