- 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
86 lines
2.9 KiB
Java
86 lines
2.9 KiB
Java
package androidx.credentials.webauthn;
|
|
|
|
import androidx.annotation.RestrictTo;
|
|
import java.util.Arrays;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY})
|
|
/* loaded from: classes.dex */
|
|
public final class PublicKeyCredentialUserEntity {
|
|
private final String displayName;
|
|
private final byte[] id;
|
|
private final String name;
|
|
|
|
public static /* synthetic */ PublicKeyCredentialUserEntity copy$default(PublicKeyCredentialUserEntity publicKeyCredentialUserEntity, String str, byte[] bArr, String str2, int i, Object obj) {
|
|
if ((i & 1) != 0) {
|
|
str = publicKeyCredentialUserEntity.name;
|
|
}
|
|
if ((i & 2) != 0) {
|
|
bArr = publicKeyCredentialUserEntity.id;
|
|
}
|
|
if ((i & 4) != 0) {
|
|
str2 = publicKeyCredentialUserEntity.displayName;
|
|
}
|
|
return publicKeyCredentialUserEntity.copy(str, bArr, str2);
|
|
}
|
|
|
|
public final String component1() {
|
|
return this.name;
|
|
}
|
|
|
|
public final byte[] component2() {
|
|
return this.id;
|
|
}
|
|
|
|
public final String component3() {
|
|
return this.displayName;
|
|
}
|
|
|
|
public final PublicKeyCredentialUserEntity copy(String name, byte[] id, String displayName) {
|
|
Intrinsics.checkNotNullParameter(name, "name");
|
|
Intrinsics.checkNotNullParameter(id, "id");
|
|
Intrinsics.checkNotNullParameter(displayName, "displayName");
|
|
return new PublicKeyCredentialUserEntity(name, id, displayName);
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof PublicKeyCredentialUserEntity)) {
|
|
return false;
|
|
}
|
|
PublicKeyCredentialUserEntity publicKeyCredentialUserEntity = (PublicKeyCredentialUserEntity) obj;
|
|
return Intrinsics.areEqual(this.name, publicKeyCredentialUserEntity.name) && Intrinsics.areEqual(this.id, publicKeyCredentialUserEntity.id) && Intrinsics.areEqual(this.displayName, publicKeyCredentialUserEntity.displayName);
|
|
}
|
|
|
|
public final String getDisplayName() {
|
|
return this.displayName;
|
|
}
|
|
|
|
public final byte[] getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public final String getName() {
|
|
return this.name;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return (((this.name.hashCode() * 31) + Arrays.hashCode(this.id)) * 31) + this.displayName.hashCode();
|
|
}
|
|
|
|
public String toString() {
|
|
return "PublicKeyCredentialUserEntity(name=" + this.name + ", id=" + Arrays.toString(this.id) + ", displayName=" + this.displayName + ')';
|
|
}
|
|
|
|
public PublicKeyCredentialUserEntity(String name, byte[] id, String displayName) {
|
|
Intrinsics.checkNotNullParameter(name, "name");
|
|
Intrinsics.checkNotNullParameter(id, "id");
|
|
Intrinsics.checkNotNullParameter(displayName, "displayName");
|
|
this.name = name;
|
|
this.id = id;
|
|
this.displayName = displayName;
|
|
}
|
|
}
|