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>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,66 @@
package com.amazonaws.services.cognitoidentity.model;
import com.amazonaws.AmazonWebServiceRequest;
import java.io.Serializable;
import java.util.Map;
/* loaded from: classes.dex */
public class GetOpenIdTokenRequest extends AmazonWebServiceRequest implements Serializable {
public String identityId;
public Map logins;
public String getIdentityId() {
return this.identityId;
}
public Map getLogins() {
return this.logins;
}
public GetOpenIdTokenRequest withIdentityId(String str) {
this.identityId = str;
return this;
}
public GetOpenIdTokenRequest withLogins(Map map) {
this.logins = map;
return this;
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getIdentityId() != null) {
sb.append("IdentityId: " + getIdentityId() + ",");
}
if (getLogins() != null) {
sb.append("Logins: " + getLogins());
}
sb.append("}");
return sb.toString();
}
public int hashCode() {
return (((getIdentityId() == null ? 0 : getIdentityId().hashCode()) + 31) * 31) + (getLogins() != null ? getLogins().hashCode() : 0);
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || !(obj instanceof GetOpenIdTokenRequest)) {
return false;
}
GetOpenIdTokenRequest getOpenIdTokenRequest = (GetOpenIdTokenRequest) obj;
if ((getOpenIdTokenRequest.getIdentityId() == null) ^ (getIdentityId() == null)) {
return false;
}
if (getOpenIdTokenRequest.getIdentityId() != null && !getOpenIdTokenRequest.getIdentityId().equals(getIdentityId())) {
return false;
}
if ((getOpenIdTokenRequest.getLogins() == null) ^ (getLogins() == null)) {
return false;
}
return getOpenIdTokenRequest.getLogins() == null || getOpenIdTokenRequest.getLogins().equals(getLogins());
}
}