List of usage examples for com.squareup.okhttp Response cacheControl
CacheControl cacheControl
To view the source code for com.squareup.okhttp Response cacheControl.
Click Source Link
From source file:it.http.HttpHeadersTest.java
License:Open Source License
private static void assertCacheInBrowser(Response httpResponse) { CacheControl cacheControl = httpResponse.cacheControl(); assertThat(cacheControl.mustRevalidate()).isFalse(); assertThat(cacheControl.noCache()).isFalse(); assertThat(cacheControl.noStore()).isFalse(); }
From source file:it.http.HttpHeadersTest.java
License:Open Source License
private static void assertNoCacheInBrowser(Response httpResponse) { CacheControl cacheControl = httpResponse.cacheControl(); assertThat(cacheControl.mustRevalidate()).isTrue(); assertThat(cacheControl.noCache()).isTrue(); assertThat(cacheControl.noStore()).isTrue(); }