- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
69 lines
2.7 KiB
Java
69 lines
2.7 KiB
Java
package com.google.firebase.sessions.settings;
|
|
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class SessionConfigs {
|
|
public final Integer cacheDuration;
|
|
public final Long cacheUpdatedTime;
|
|
public final Boolean sessionEnabled;
|
|
public final Integer sessionRestartTimeout;
|
|
public final Double sessionSamplingRate;
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof SessionConfigs)) {
|
|
return false;
|
|
}
|
|
SessionConfigs sessionConfigs = (SessionConfigs) obj;
|
|
return Intrinsics.areEqual(this.sessionEnabled, sessionConfigs.sessionEnabled) && Intrinsics.areEqual((Object) this.sessionSamplingRate, (Object) sessionConfigs.sessionSamplingRate) && Intrinsics.areEqual(this.sessionRestartTimeout, sessionConfigs.sessionRestartTimeout) && Intrinsics.areEqual(this.cacheDuration, sessionConfigs.cacheDuration) && Intrinsics.areEqual(this.cacheUpdatedTime, sessionConfigs.cacheUpdatedTime);
|
|
}
|
|
|
|
public final Integer getCacheDuration() {
|
|
return this.cacheDuration;
|
|
}
|
|
|
|
public final Long getCacheUpdatedTime() {
|
|
return this.cacheUpdatedTime;
|
|
}
|
|
|
|
public final Boolean getSessionEnabled() {
|
|
return this.sessionEnabled;
|
|
}
|
|
|
|
public final Integer getSessionRestartTimeout() {
|
|
return this.sessionRestartTimeout;
|
|
}
|
|
|
|
public final Double getSessionSamplingRate() {
|
|
return this.sessionSamplingRate;
|
|
}
|
|
|
|
public int hashCode() {
|
|
Boolean bool = this.sessionEnabled;
|
|
int hashCode = (bool == null ? 0 : bool.hashCode()) * 31;
|
|
Double d = this.sessionSamplingRate;
|
|
int hashCode2 = (hashCode + (d == null ? 0 : d.hashCode())) * 31;
|
|
Integer num = this.sessionRestartTimeout;
|
|
int hashCode3 = (hashCode2 + (num == null ? 0 : num.hashCode())) * 31;
|
|
Integer num2 = this.cacheDuration;
|
|
int hashCode4 = (hashCode3 + (num2 == null ? 0 : num2.hashCode())) * 31;
|
|
Long l = this.cacheUpdatedTime;
|
|
return hashCode4 + (l != null ? l.hashCode() : 0);
|
|
}
|
|
|
|
public String toString() {
|
|
return "SessionConfigs(sessionEnabled=" + this.sessionEnabled + ", sessionSamplingRate=" + this.sessionSamplingRate + ", sessionRestartTimeout=" + this.sessionRestartTimeout + ", cacheDuration=" + this.cacheDuration + ", cacheUpdatedTime=" + this.cacheUpdatedTime + ')';
|
|
}
|
|
|
|
public SessionConfigs(Boolean bool, Double d, Integer num, Integer num2, Long l) {
|
|
this.sessionEnabled = bool;
|
|
this.sessionSamplingRate = d;
|
|
this.sessionRestartTimeout = num;
|
|
this.cacheDuration = num2;
|
|
this.cacheUpdatedTime = l;
|
|
}
|
|
}
|