All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.studerw.tda.http.cookie.store.CookieStore Maven / Gradle / Ivy

There is a newer version: 2.4.3.1
Show newest version
package com.studerw.tda.http.cookie.store;

import okhttp3.Cookie;
import okhttp3.HttpUrl;

import java.util.List;

public interface CookieStore {

    void add(HttpUrl uri, List cookie);

    List get(HttpUrl uri);

    List getCookies();

    boolean remove(HttpUrl uri, Cookie cookie);

    boolean removeAll();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy