- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
46 lines
1.4 KiB
Java
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 WebSourceParams {
|
|
private final boolean debugKeyAllowed;
|
|
private final Uri registrationUri;
|
|
|
|
public final boolean getDebugKeyAllowed() {
|
|
return this.debugKeyAllowed;
|
|
}
|
|
|
|
public final Uri getRegistrationUri() {
|
|
return this.registrationUri;
|
|
}
|
|
|
|
public WebSourceParams(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 WebSourceParams)) {
|
|
return false;
|
|
}
|
|
WebSourceParams webSourceParams = (WebSourceParams) obj;
|
|
return Intrinsics.areEqual(this.registrationUri, webSourceParams.registrationUri) && this.debugKeyAllowed == webSourceParams.debugKeyAllowed;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return (this.registrationUri.hashCode() * 31) + Boolean.hashCode(this.debugKeyAllowed);
|
|
}
|
|
|
|
public String toString() {
|
|
return "WebSourceParams { RegistrationUri=" + this.registrationUri + ", DebugKeyAllowed=" + this.debugKeyAllowed + " }";
|
|
}
|
|
}
|