Files
rr3-apk/decompiled/sources/com/digitalturbine/ignite/authenticator/events/c.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

33 lines
938 B
Java

package com.digitalturbine.ignite.authenticator.events;
import java.util.HashMap;
import java.util.Map;
/* loaded from: classes2.dex */
public enum c {
FAILED_INIT_ENCRYPTION("failed to init encryption"),
FAILED_EXTRACT_ENCRYPTED_DATA("failed to extract encrypted data"),
FAILED_STORE_ENCRYPTED_DATA("failed to store encrypted data"),
IGNITE_SERVICE_UNAVAILABLE("Ignite service unavailable"),
IGNITE_SERVICE_INVALID_SESSION("Invalid session token"),
ONE_DT_EMPTY_ENTITY("received empty one dt from the service"),
ONE_DT_AUTHENTICATOR_DESTROYED("authenticator already destroyed");
private static final Map<String, c> CONSTANTS = new HashMap();
private final String value;
static {
for (c cVar : values()) {
CONSTANTS.put(cVar.value, cVar);
}
}
c(String str) {
this.value = str;
}
public final String e() {
return this.value;
}
}