Files
rr3-apk/decompiled/sources/androidx/privacysandbox/ads/adservices/measurement/WebTriggerParams.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

46 lines
1.4 KiB
Java

package androidx.privacysandbox.ads.adservices.measurement;
import android.net.Uri;
import androidx.annotation.RequiresApi;
import kotlin.jvm.internal.Intrinsics;
@RequiresApi(33)
/* loaded from: classes.dex */
public final class WebTriggerParams {
private final boolean debugKeyAllowed;
private final Uri registrationUri;
public final boolean getDebugKeyAllowed() {
return this.debugKeyAllowed;
}
public final Uri getRegistrationUri() {
return this.registrationUri;
}
public WebTriggerParams(Uri registrationUri, boolean z) {
Intrinsics.checkNotNullParameter(registrationUri, "registrationUri");
this.registrationUri = registrationUri;
this.debugKeyAllowed = z;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof WebTriggerParams)) {
return false;
}
WebTriggerParams webTriggerParams = (WebTriggerParams) obj;
return Intrinsics.areEqual(this.registrationUri, webTriggerParams.registrationUri) && this.debugKeyAllowed == webTriggerParams.debugKeyAllowed;
}
public int hashCode() {
return (this.registrationUri.hashCode() * 31) + Boolean.hashCode(this.debugKeyAllowed);
}
public String toString() {
return "WebTriggerParams { RegistrationUri=" + this.registrationUri + ", DebugKeyAllowed=" + this.debugKeyAllowed + " }";
}
}