Class OkHttpExtension
- java.lang.Object
-
- io.freefair.gradle.plugins.okhttp.OkHttpExtension
-
public abstract class OkHttpExtension extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description OkHttpExtension()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract Property<java.lang.Integer>getCacheSize()Size in bytes for the internalHTTP cache.abstract Property<java.lang.Boolean>getForceCache()abstract Property<java.lang.Boolean>getForceNetwork()abstract Property<okhttp3.logging.HttpLoggingInterceptor.Level>getLoggingLevel()
-
-
-
Method Detail
-
getLoggingLevel
public abstract Property<okhttp3.logging.HttpLoggingInterceptor.Level> getLoggingLevel()
-
getCacheSize
public abstract Property<java.lang.Integer> getCacheSize()
Size in bytes for the internalHTTP cache. Setting this to 0 disables the cache.
-
getForceCache
public abstract Property<java.lang.Boolean> getForceCache()
-
getForceNetwork
public abstract Property<java.lang.Boolean> getForceNetwork()
-
-