Files
rr3-apk/decompiled/sources/com/ea/nimble/bridge/IdentityGenericAuthenticationConductor.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

27 lines
1010 B
Java

package com.ea.nimble.bridge;
import com.ea.nimble.identity.INimbleIdentityGenericAuthenticationConductor;
import com.ea.nimble.identity.INimbleIdentityGenericLoginResolver;
import com.ea.nimble.identity.INimbleIdentityGenericLogoutResolver;
/* loaded from: classes2.dex */
public class IdentityGenericAuthenticationConductor implements INimbleIdentityGenericAuthenticationConductor {
private int m_id;
public IdentityGenericAuthenticationConductor(int i) {
this.m_id = i;
}
public void handleLogin(INimbleIdentityGenericLoginResolver iNimbleIdentityGenericLoginResolver) {
BaseNativeCallback.sendNativeCallback(this.m_id, iNimbleIdentityGenericLoginResolver);
}
public void handleLogout(INimbleIdentityGenericLogoutResolver iNimbleIdentityGenericLogoutResolver) {
BaseNativeCallback.sendNativeCallback(this.m_id, iNimbleIdentityGenericLogoutResolver, null);
}
public void finalize() {
BaseNativeCallback.nativeFinalize(this.m_id);
}
}