Files
rr3-apk/decompiled-community/sources/com/amazonaws/services/cognitoidentity/model/GetOpenIdTokenRequest.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

67 lines
2.0 KiB
Java

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());
}
}