1   package org.weda.workflow;
2   
3   import org.weda.cache.CacheManager;
4   import org.weda.cache.CacheService;
5   import org.weda.cache.impl.SimpleCache;
6   
7   /**
8    *
9    * @author tim
10   */
11  public class TestCacheManager implements CacheManager {
12      private SimpleCache cacheService = new SimpleCache();
13      
14      public CacheService getCacheService() {
15          return cacheService;
16      }    
17  }