mirror of
https://github.com/github/codeql.git
synced 2026-08-03 00:43:00 +02:00
33 lines
1.2 KiB
Java
Generated
33 lines
1.2 KiB
Java
Generated
// Generated automatically from okhttp3.CacheControl for testing purposes
|
|
|
|
package okhttp3;
|
|
|
|
import okhttp3.Headers;
|
|
|
|
public class CacheControl
|
|
{
|
|
protected CacheControl() {}
|
|
public String toString(){ return null; }
|
|
public final boolean immutable(){ return false; }
|
|
public final boolean isPrivate(){ return false; }
|
|
public final boolean isPublic(){ return false; }
|
|
public final boolean mustRevalidate(){ return false; }
|
|
public final boolean noCache(){ return false; }
|
|
public final boolean noStore(){ return false; }
|
|
public final boolean noTransform(){ return false; }
|
|
public final boolean onlyIfCached(){ return false; }
|
|
public final int maxAgeSeconds(){ return 0; }
|
|
public final int maxStaleSeconds(){ return 0; }
|
|
public final int minFreshSeconds(){ return 0; }
|
|
public final int sMaxAgeSeconds(){ return 0; }
|
|
public static CacheControl FORCE_CACHE = null;
|
|
public static CacheControl FORCE_NETWORK = null;
|
|
public static CacheControl parse(Headers p0){ return null; }
|
|
public static CacheControl.Companion Companion = null;
|
|
static public class Companion
|
|
{
|
|
protected Companion() {}
|
|
public final CacheControl parse(Headers p0){ return null; }
|
|
}
|
|
}
|