Package net.sf.pipet.api

Examples of net.sf.pipet.api.CacheInterface


  public static final CachePolicy TEMPDIR = new CachePolicyImpl("tempdir", new FileCache(), IFACE_FILE);

  public static CachePolicy createCachePolicy(String name, String spec)
    throws InvalidConfigurationException
  {
    CacheInterface iface = null;
    if (spec.equals(IFACE_NOCACHE))
      iface = null;
    else if (spec.equals(IFACE_FILE))
      iface = new FileCache();
    else
View Full Code Here

TOP

Related Classes of net.sf.pipet.api.CacheInterface

Copyright © 2018 www.massapicom. 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.