Package com.ibm.cloud.sdk.core.http
Class ServiceCookieJar
- java.lang.Object
-
- com.ibm.cloud.sdk.core.http.ServiceCookieJar
-
- All Implemented Interfaces:
okhttp3.CookieJar
public final class ServiceCookieJar extends java.lang.Object implements okhttp3.CookieJar
This is an adapter that usesJavaNetCookieJar
.
-
-
Constructor Summary
Constructors Constructor Description ServiceCookieJar(java.net.CookieHandler cookieHandler)
Instantiates a new ServiceCookieJar.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<okhttp3.Cookie>
loadForRequest(okhttp3.HttpUrl url)
void
saveFromResponse(okhttp3.HttpUrl url, java.util.List<okhttp3.Cookie> cookies)
-
-
-
Method Detail
-
saveFromResponse
public void saveFromResponse(okhttp3.HttpUrl url, java.util.List<okhttp3.Cookie> cookies)
- Specified by:
saveFromResponse
in interfaceokhttp3.CookieJar
-
loadForRequest
public java.util.List<okhttp3.Cookie> loadForRequest(okhttp3.HttpUrl url)
- Specified by:
loadForRequest
in interfaceokhttp3.CookieJar
-
-