Example usage for org.apache.http.cookie CookieIdentityComparator CookieIdentityComparator

List of usage examples for org.apache.http.cookie CookieIdentityComparator CookieIdentityComparator

Introduction

In this page you can find the example usage for org.apache.http.cookie CookieIdentityComparator CookieIdentityComparator.

Prototype

CookieIdentityComparator

Source Link

Usage

From source file:com.couchbase.http.trunk.BasicCookieStore.java

public BasicCookieStore() {
    super();
    this.cookies = new TreeSet<Cookie>(new CookieIdentityComparator());
}