Package com.gistlabs.mechanize.cache

Examples of com.gistlabs.mechanize.cache.HttpCacheFilter


  public MechanizeAgent(final AbstractHttpClient client, final HttpCache httpCache) {
    this.client = client;
    setupClient(client);

    this.requestChain = new DefaultMechanizeChainFilter(new MechanizeHttpClientFilter(this.client));
    addFilter(new HttpCacheFilter(httpCache));

    this.cookies = new Cookies(this.client);

  }
View Full Code Here

TOP

Related Classes of com.gistlabs.mechanize.cache.HttpCacheFilter

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.