Files
rr3-apk/decompiled/sources/com/google/android/gms/identitycredentials/internal/IdentityCredentialBaseCallbacks.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

45 lines
2.4 KiB
Java

package com.google.android.gms.identitycredentials.internal;
import androidx.annotation.NonNull;
import com.google.android.gms.common.api.Status;
import com.google.android.gms.identitycredentials.ClearRegistryResponse;
import com.google.android.gms.identitycredentials.PendingGetCredentialHandle;
import com.google.android.gms.identitycredentials.PendingImportCredentialsHandle;
import com.google.android.gms.identitycredentials.RegisterExportResponse;
import com.google.android.gms.identitycredentials.RegistrationResponse;
import com.google.android.gms.identitycredentials.internal.IIdentityCredentialCallbacks;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public abstract class IdentityCredentialBaseCallbacks extends IIdentityCredentialCallbacks.Stub {
@Override // com.google.android.gms.identitycredentials.internal.IIdentityCredentialCallbacks
public void onClearRegistry(@NonNull Status status, ClearRegistryResponse clearRegistryResponse) {
Intrinsics.checkNotNullParameter(status, "status");
throw new UnsupportedOperationException();
}
@Override // com.google.android.gms.identitycredentials.internal.IIdentityCredentialCallbacks
public void onGetCredential(@NonNull Status status, PendingGetCredentialHandle pendingGetCredentialHandle) {
Intrinsics.checkNotNullParameter(status, "status");
throw new UnsupportedOperationException();
}
@Override // com.google.android.gms.identitycredentials.internal.IIdentityCredentialCallbacks
public void onImportCredentials(@NonNull Status status, PendingImportCredentialsHandle pendingImportCredentialsHandle) {
Intrinsics.checkNotNullParameter(status, "status");
throw new UnsupportedOperationException();
}
@Override // com.google.android.gms.identitycredentials.internal.IIdentityCredentialCallbacks
public void onRegisterCredentials(@NonNull Status status, RegistrationResponse registrationResponse) {
Intrinsics.checkNotNullParameter(status, "status");
throw new UnsupportedOperationException();
}
@Override // com.google.android.gms.identitycredentials.internal.IIdentityCredentialCallbacks
public void onRegisterExport(@NonNull Status status, RegisterExportResponse registerExportResponse) {
Intrinsics.checkNotNullParameter(status, "status");
throw new UnsupportedOperationException();
}
}