Files
codeql/java/ql/test/stubs/okhttp-4.9.3/okhttp3/CacheControl.java
Joe Farebrother 4afecf575e Generate more stubs for okhttp and fix tests.
Some generated stubs needed to be manually corrected.
2022-12-09 13:41:17 +00:00

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; }
}
}