UserFederationCache

data class UserFederationCache(val evictionDay: Int? = null, val evictionHour: Int? = null, val evictionMinute: Int? = null, val maxLifespan: String? = null, val policy: String? = null)

Constructors

Link copied to clipboard
constructor(evictionDay: Int? = null, evictionHour: Int? = null, evictionMinute: Int? = null, maxLifespan: String? = null, policy: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val evictionDay: Int? = null

Day of the week the entry will become invalid on

Link copied to clipboard
val evictionHour: Int? = null

Hour of day the entry will become invalid on.

Link copied to clipboard
val evictionMinute: Int? = null

Minute of day the entry will become invalid on.

Link copied to clipboard
val maxLifespan: String? = null

Max lifespan of cache entry (duration string).

Link copied to clipboard
val policy: String? = null

Can be one of DEFAULT, EVICT_DAILY, EVICT_WEEKLY, MAX_LIFESPAN, or NO_CACHE. Defaults to DEFAULT.