Package com.gistlabs.mechanize.cache.inMemory

Examples of com.gistlabs.mechanize.cache.inMemory.InMemoryHttpCache


*/
public class HttpCacheFilter implements MechanizeChainFilter {
  final HttpCache cache;

  public HttpCacheFilter() {
    this(new InMemoryHttpCache());
  }
View Full Code Here


  public MechanizeAgent() {
    this(buildDefaultHttpClient());
  }

  public MechanizeAgent(final AbstractHttpClient client) {
    this(client, new InMemoryHttpCache());
  }
View Full Code Here

TOP

Related Classes of com.gistlabs.mechanize.cache.inMemory.InMemoryHttpCache

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.